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

Commit cd107c00 authored by Chen Xu's avatar Chen Xu Committed by Gerrit Code Review
Browse files

Merge "fix crash from carriersignalAgent under sip call"

parents 0b039433 1b5f54fb
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));
                }