aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSandeep Kunta <skunta@codeaurora.org>2014-09-09 18:24:05 +0530
committerSteve Kondik <steve@cyngn.com>2016-07-02 10:55:01 -0700
commit31cadbe401e8396b1acd82fd56ef65d08cf64db6 (patch)
treec42106db436f9cbd64ce422184d3a3c35b226fe8
parentfe0a2f2629ff6f7d3b61025513b7ad499b9b5e2e (diff)
downloadandroid_frameworks_opt_telephony-31cadbe401e8396b1acd82fd56ef65d08cf64db6.tar.gz
android_frameworks_opt_telephony-31cadbe401e8396b1acd82fd56ef65d08cf64db6.tar.bz2
android_frameworks_opt_telephony-31cadbe401e8396b1acd82fd56ef65d08cf64db6.zip
MSIM: Fix ECBM dialog issue in G+C
Fix ECBM dialog issue by setting ECM mode property value as single SIM instead of comma separation in MSIM. Change-Id: I7bb3c169dc0e0216afbf773236e4d08fda33a0c0 CRs-Fixed: 732984
-rw-r--r--src/java/com/android/internal/telephony/cdma/CDMAPhone.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/java/com/android/internal/telephony/cdma/CDMAPhone.java b/src/java/com/android/internal/telephony/cdma/CDMAPhone.java
index 724b231ea..dd6631cf2 100644
--- a/src/java/com/android/internal/telephony/cdma/CDMAPhone.java
+++ b/src/java/com/android/internal/telephony/cdma/CDMAPhone.java
@@ -1174,7 +1174,7 @@ public class CDMAPhone extends PhoneBase {
mIsPhoneInEcmState = true;
// notify change
sendEmergencyCallbackModeChange();
- setSystemProperty(TelephonyProperties.PROPERTY_INECM_MODE, "true");
+ super.setSystemProperty(TelephonyProperties.PROPERTY_INECM_MODE, "true");
// Post this runnable so we will automatically exit
// if no one invokes exitEmergencyCallbackMode() directly.
@@ -1202,7 +1202,7 @@ public class CDMAPhone extends PhoneBase {
if (ar.exception == null) {
if (mIsPhoneInEcmState) {
mIsPhoneInEcmState = false;
- setSystemProperty(TelephonyProperties.PROPERTY_INECM_MODE, "false");
+ super.setSystemProperty(TelephonyProperties.PROPERTY_INECM_MODE, "false");
}
// send an Intent
sendEmergencyCallbackModeChange();