| commit | 79ff2bcdbdf1c28f229f4acec9433beb1cd7a57e | [log] [tgz] |
|---|---|---|
| author | Santos Cordon <santoscordon@google.com> | Thu Mar 27 15:31:27 2014 -0700 |
| committer | Santos Cordon <santoscordon@google.com> | Mon Mar 31 16:06:59 2014 -0700 |
| tree | cccd4b40cea46c80040f724fa9626ce47f82372d | |
| parent | a56f276cafcad80ab3a28996b6a0d72cffa4b2bc [diff] [blame] |
Add disconnect cause to the disconnect path. Change-Id: I4488f58eaf656b46410b2ed85999d0598bc11a5d
diff --git a/src/com/android/telecomm/InCallController.java b/src/com/android/telecomm/InCallController.java index 5c3e3e6..5fbf1f8 100644 --- a/src/com/android/telecomm/InCallController.java +++ b/src/com/android/telecomm/InCallController.java
@@ -129,7 +129,7 @@ case DISCONNECTED: Log.i(this, "Mark call as DISCONNECTED: %s", call.getId()); try { - mInCallService.setDisconnected(call.getId()); + mInCallService.setDisconnected(call.getId(), call.getDisconnectCause()); } catch (RemoteException e) { Log.e(this, e, "Exception attempting to call setDisconnected."); }