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

Commit 984ff37a authored by Wink Saville's avatar Wink Saville Committed by Android Git Automerger
Browse files

am 60cd6fd3: am a0883b4b: am 373b373b: Merge "Telephony:Prevent duplicate auto...

am 60cd6fd3: am a0883b4b: am 373b373b: Merge "Telephony:Prevent duplicate auto mode request on EF_CSP read"

* commit '60cd6fd3':
  Telephony:Prevent duplicate auto mode request on EF_CSP read
parents b58d0ca6 60cd6fd3
Loading
Loading
Loading
Loading
+9 −2
Original line number Diff line number Diff line
@@ -1284,8 +1284,15 @@ public class GSMPhone extends PhoneBase {
                break;

            case EVENT_SET_NETWORK_AUTOMATIC:
                // Automatic network selection from EF_CSP SIM record
                ar = (AsyncResult) msg.obj;
                if (mSST.mSS.getIsManualSelection()) {
                    setNetworkSelectionModeAutomatic((Message) ar.result);
                    Rlog.d(LOG_TAG, "SET_NETWORK_SELECTION_AUTOMATIC: set to automatic");
                } else {
                    // prevent duplicate request which will push current PLMN to low priority
                    Rlog.d(LOG_TAG, "SET_NETWORK_SELECTION_AUTOMATIC: already automatic, ignore");
                }
                break;

            case EVENT_ICC_RECORD_EVENTS: