Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3cb151bd authored by Chen Xu's avatar Chen Xu Committed by android-build-merger
Browse files

Merge "fix crash from carriersignalAgent under sip call"

am: cd107c00

Change-Id: Ic2d7c52b529da0fcf0a7e47427805b53eabd8fb1
parents e951cf55 cd107c00
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -101,7 +101,8 @@ public class CarrierSignalAgent {
            if (DBG) log("CarrierSignalAgent receiver action: " + action);
            if (action.equals(CarrierConfigManager.ACTION_CARRIER_CONFIG_CHANGED)) {
                // notify carrier apps before cache get purged
                if (IccCardConstants.State.ABSENT == mPhone.getIccCard().getState()) {
                if (mPhone.getIccCard() != null
                        && IccCardConstants.State.ABSENT == mPhone.getIccCard().getState()) {
                    notifyCarrierSignalReceivers(
                            new Intent(TelephonyIntents.ACTION_CARRIER_SIGNAL_RESET));
                }