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

Commit 79e82049 authored by Youming Ye's avatar Youming Ye Committed by android-build-merger
Browse files

Merge "Fix null pointer exception caused by mCallProfile" am: 99d68bc4 am: 7a79d484

am: 93a10c55

Change-Id: I80d5c1c047f3d5dac98f56dbffe9709cd5ea4296
parents 4101815f 93a10c55
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -3486,10 +3486,11 @@ public class ImsCall implements ICall {
        sb.append(isOnHold() ? "Y" : "N");
        sb.append(" mute:");
        sb.append(isMuted() ? "Y" : "N");
        if (mCallProfile != null) {
            sb.append(" mCallProfile:" + mCallProfile);
        ImsCallProfile imsCallProfile = mCallProfile;
        if (imsCallProfile != null) {
            sb.append(" mCallProfile:" + imsCallProfile);
            sb.append(" tech:");
            sb.append(mCallProfile.getCallExtra(ImsCallProfile.EXTRA_CALL_RAT_TYPE));
            sb.append(imsCallProfile.getCallExtra(ImsCallProfile.EXTRA_CALL_RAT_TYPE));
        }
        sb.append(" updateRequest:");
        sb.append(updateRequestToString(mUpdateRequest));