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

Commit b0d8a89b authored by Garik Badalyan's avatar Garik Badalyan
Browse files

IMS-VT: Unregister CallManager from ModifyCallRequest

CallManager needs to unregister the UNSOL_MODIFY_CALL
request when it unregisters all phone events.

Change-Id: I0d383f8b406a69670f1e69890e5b635346c2657f
CRs-Fixed: 587612
parent 726b437c
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -618,6 +618,11 @@ public class CallManager {

        if (phone.getPhoneType() == PhoneConstants.PHONE_TYPE_IMS) {
            phone.unregisterForEcmTimerReset(mHandler);
            try {
                phone.unregisterForModifyCallRequest(mHandler);
            } catch (CallStateException e) {
                Rlog.e(LOG_TAG, "unregisterForModifyCallRequest ", e);
            }
        }
    }