Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c759deb6 authored by SongFerng Wang's avatar SongFerng Wang Committed by Android (Google) Code Review
Browse files

Merge "Fix queryCLIP's ClassCastException" into sc-dev

parents 095163b6 c3854a11
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -1837,9 +1837,9 @@ public class ImsPhone extends ImsPhoneBase {
                break;

            case EVENT_GET_CLIP_DONE:
                Bundle ssInfoResp = null;
                if (ar.exception == null) {
                    ssInfoResp = (Bundle) ar.result;
                ImsSsInfo ssInfoResp = null;
                if (ar.exception == null && ar.result instanceof ImsSsInfo) {
                    ssInfoResp = (ImsSsInfo) ar.result;
                }
                if (ss != null) {
                    sendResponseOrRetryOnCsfbSs(ss, msg.what, ar.exception, ssInfoResp);