Loading src/com/android/server/telecom/CallsManager.java +8 −5 Original line number Diff line number Diff line Loading @@ -5533,9 +5533,10 @@ public class CallsManager extends Call.ListenerBase // We are going to place the new outgoing call, so disconnect any ongoing self-managed // calls which are ongoing at this time. disconnectSelfManagedCalls("outgoing call " + callId); if (mPendingCallConfirm != null) { mPendingCallConfirm.complete(mPendingCall); mPendingCallConfirm = null; } mPendingCall = null; } } Loading @@ -5554,10 +5555,12 @@ public class CallsManager extends Call.ListenerBase markCallAsDisconnected(mPendingCall, new DisconnectCause(DisconnectCause.CANCELED)); markCallAsRemoved(mPendingCall); mPendingCall = null; if (mPendingCallConfirm != null) { mPendingCallConfirm.complete(null); mPendingCallConfirm = null; } } } /** * Called from {@link #startOutgoingCall(Uri, PhoneAccountHandle, Bundle, UserHandle, Intent, String)} when Loading Loading
src/com/android/server/telecom/CallsManager.java +8 −5 Original line number Diff line number Diff line Loading @@ -5533,9 +5533,10 @@ public class CallsManager extends Call.ListenerBase // We are going to place the new outgoing call, so disconnect any ongoing self-managed // calls which are ongoing at this time. disconnectSelfManagedCalls("outgoing call " + callId); if (mPendingCallConfirm != null) { mPendingCallConfirm.complete(mPendingCall); mPendingCallConfirm = null; } mPendingCall = null; } } Loading @@ -5554,10 +5555,12 @@ public class CallsManager extends Call.ListenerBase markCallAsDisconnected(mPendingCall, new DisconnectCause(DisconnectCause.CANCELED)); markCallAsRemoved(mPendingCall); mPendingCall = null; if (mPendingCallConfirm != null) { mPendingCallConfirm.complete(null); mPendingCallConfirm = null; } } } /** * Called from {@link #startOutgoingCall(Uri, PhoneAccountHandle, Bundle, UserHandle, Intent, String)} when Loading