Loading src/com/android/server/telecom/CallsManager.java +5 −0 Original line number Diff line number Diff line Loading @@ -2501,6 +2501,11 @@ public class CallsManager extends Call.ListenerBase if (!mCalls.contains(call)) { Log.w(this, "Unknown call (%s) asked to be removed from hold", call); } else { if (getOutgoingCall() != null) { Log.w(this, "There is an outgoing call, so it is unable to unhold this call %s", call); return; } Call activeCall = (Call) mConnectionSvrFocusMgr.getCurrentFocusCall(); String activeCallId = null; if (activeCall != null && !activeCall.isLocallyDisconnecting()) { Loading Loading
src/com/android/server/telecom/CallsManager.java +5 −0 Original line number Diff line number Diff line Loading @@ -2501,6 +2501,11 @@ public class CallsManager extends Call.ListenerBase if (!mCalls.contains(call)) { Log.w(this, "Unknown call (%s) asked to be removed from hold", call); } else { if (getOutgoingCall() != null) { Log.w(this, "There is an outgoing call, so it is unable to unhold this call %s", call); return; } Call activeCall = (Call) mConnectionSvrFocusMgr.getCurrentFocusCall(); String activeCallId = null; if (activeCall != null && !activeCall.isLocallyDisconnecting()) { Loading