Skip to content

Commit 52df681

Browse files
Umashankar GodachiAdnan Begovic
authored andcommitted
MSIM: Fix to resolve SIM PIN unlock in APM.
In MSIM case, with two sims being locked on pin, the second sim pin unlock screen does not get closed even with the correct password.This is due to the showDefaultMessage flag not being set to true after sim pin is verified successfully. Fix: In KeyGuardSimPinView, set the showDefaultMessage flag to true after SIM PIN is verified successfully. CRs-Fixed: 949288. TICKET: CYNGNOS-2766 Change-Id: Ie31ee9fb009314555c81f3787d0ef3af4aad74c7
1 parent 7d60f88 commit 52df681

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

packages/Keyguard/src/com/android/keyguard/KeyguardSimPinView.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,7 @@ public void run() {
260260
mRemainingAttempts = -1;
261261
KeyguardUpdateMonitor.getInstance(getContext())
262262
.reportSimUnlocked(mSubId);
263+
mShowDefaultMessage = true;
263264
if (mCallback != null) {
264265
mCallback.dismiss(true);
265266
}

0 commit comments

Comments
 (0)