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

Commit 27c13e5d authored by Andres Morales's avatar Andres Morales Committed by Android (Google) Code Review
Browse files

Merge "[ConfirmCredential] fix issue where patterns of length 4 are not checked" into mnc-dev

parents 227ba29e 864d13e2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -329,7 +329,7 @@ public class ConfirmLockPattern extends ConfirmDeviceCredentialBaseActivity {

            private void startCheckPattern(final List<LockPatternView.Cell> pattern,
                    final Intent intent) {
                if (pattern.size() <= LockPatternUtils.MIN_PATTERN_REGISTER_FAIL) {
                if (pattern.size() < LockPatternUtils.MIN_PATTERN_REGISTER_FAIL) {
                    onPatternChecked(pattern, false, intent, 0);
                    return;
                }