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

Commit 4f6bc910 authored by Daniel Hillenbrand's avatar Daniel Hillenbrand Committed by Gerrit Code Review
Browse files

Merge "SamsungRIL: Fix data connection after pin unlock" into jellybean

parents e8a48f41 9cfdf504
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -575,6 +575,14 @@ public class SamsungRIL extends RIL implements CommandsInterface {
    @Override
    protected Object
    responseSignalStrength(Parcel p) {
        // When SIM is PIN-unlocked, the RIL responds with APPSTATE_UNKNOWN and
        // does not follow up with RIL_UNSOL_RESPONSE_SIM_STATUS_CHANGED. We
        // notify the system here.
        String state = SystemProperties.get(TelephonyProperties.PROPERTY_SIM_STATE);
        if ("NOT_READY".equals(state) && mIccStatusChangedRegistrants != null) {
            mIccStatusChangedRegistrants.notifyRegistrants();
        }

        int numInts = 12;
        int response[];