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

Commit c8baaba0 authored by Brad Ebinger's avatar Brad Ebinger Committed by Gerrit Code Review
Browse files

Merge "Avoid placing the pending MO call if it is disconnected"

parents 3c24cd34 45b831a2
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -2268,7 +2268,8 @@ public class ImsPhoneCallTracker extends CallTracker implements ImsPullCall {
                if (mRingingCall.getState().isRinging()) {
                    // Drop pending MO. We should address incoming call first
                    mPendingMO = null;
                } else if (mPendingMO != null) {
                } else if (mPendingMO != null
                        && mPendingMO.getDisconnectCause() == DisconnectCause.NOT_DISCONNECTED) {
                    sendEmptyMessage(EVENT_DIAL_PENDINGMO);
                }
            }