diff options
author | Santos Cordon <santoscordon@google.com> | 2014-07-24 15:36:03 -0700 |
---|---|---|
committer | Santos Cordon <santoscordon@google.com> | 2014-07-25 01:22:47 +0000 |
commit | 6e1588189961c4aab0f036dd781ca0f218cbbe28 (patch) | |
tree | a42257cd9a2827299ba828cdcc57ce757568f3ea | |
parent | 600502f1ed5a5b9938c21c4663d6e82269fd9f51 (diff) |
Add more disconnect causes 4/4
Bug: 15692074
Change-Id: Ib94c33fac8450b70e53dbe12d71f41777e9e140c
-rw-r--r-- | InCallUI/src/com/android/incallui/InCallActivity.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/InCallUI/src/com/android/incallui/InCallActivity.java b/InCallUI/src/com/android/incallui/InCallActivity.java index f609d28d2..001c76954 100644 --- a/InCallUI/src/com/android/incallui/InCallActivity.java +++ b/InCallUI/src/com/android/incallui/InCallActivity.java @@ -588,7 +588,8 @@ public class InCallActivity extends Activity { return R.string.callFailed_dsac_restricted_emergency; case DisconnectCause.CS_RESTRICTED_NORMAL: return R.string.callFailed_dsac_restricted_normal; - case DisconnectCause.ERROR_UNSPECIFIED: + case DisconnectCause.OUTGOING_FAILURE: + case DisconnectCause.OUTGOING_CANCELED: // We couldn't successfully place the call; there was some // failure in the telephony layer. // TODO: Need UI spec for this failure case; for now just |