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

Commit 24fd7c7a 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:...

Merge "Fix null pointer exception caused by mCallProfile" am: 99d68bc4 am: 7a79d484 am: 93a10c55
am: 79e82049

Change-Id: Ie2fad12cf648a8fca0ca658a942ffc0fe3bb39d9
parents 1cf727dc 79e82049
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));