Loading src/com/android/server/telecom/ConnectionServiceWrapper.java +8 −0 Original line number Diff line number Diff line Loading @@ -1269,6 +1269,14 @@ public class ConnectionServiceWrapper extends ServiceBinder implements @Override public void onSuccess() { String callId = mCallIdMapper.getCallId(call); if (callId == null) { Log.w(ConnectionServiceWrapper.this, "Call not present" + " in call id mapper, maybe it was aborted before the bind" + " completed successfully?"); response.handleCreateConnectionFailure( new DisconnectCause(DisconnectCause.CANCELED)); return; } mPendingResponses.put(callId, response); GatewayInfo gatewayInfo = call.getGatewayInfo(); Loading Loading
src/com/android/server/telecom/ConnectionServiceWrapper.java +8 −0 Original line number Diff line number Diff line Loading @@ -1269,6 +1269,14 @@ public class ConnectionServiceWrapper extends ServiceBinder implements @Override public void onSuccess() { String callId = mCallIdMapper.getCallId(call); if (callId == null) { Log.w(ConnectionServiceWrapper.this, "Call not present" + " in call id mapper, maybe it was aborted before the bind" + " completed successfully?"); response.handleCreateConnectionFailure( new DisconnectCause(DisconnectCause.CANCELED)); return; } mPendingResponses.put(callId, response); GatewayInfo gatewayInfo = call.getGatewayInfo(); Loading