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

Commit 2eaae386 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "SystemUI: Fix sim pin lock message displaying incorrectly issue"

parents a47bc4df 111bbae5
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -341,7 +341,7 @@ public class KeyguardSimPinView extends KeyguardPinBasedInputView {

    private void handleSubInfoChangeIfNeeded() {
        long subId = mKgUpdateMonitor.getSimPinLockSubId();
        if (subId != mSubId) {
        if (SubscriptionManager.isValidSubId(subId) && (subId != mSubId)) {
            mSubId = subId;
            handleSubInfoChange();
        }
@@ -389,7 +389,6 @@ public class KeyguardSimPinView extends KeyguardPinBasedInputView {
                    mRemainingAttempts, true), true);
            return;
        }
        mSecurityMessageDisplay.setMessage(R.string.kg_sim_pin_instructions, true);
        new CheckSimPin("") {
            void onSimCheckResponse(final int result, final int attemptsRemaining) {
                Log.d(LOG_TAG, "onSimCheckResponse " + " dummy One result" + result +