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

Commit 1b28b09d authored by Chun-Wei Wang's avatar Chun-Wei Wang
Browse files

Enable lockout timeout

Fix a bug that the user can still enter pin/pattern
during lockout timeout when doing special user
credential verification.

Bug: 301924294
Test: b/301924294#comment1

Change-Id: I3301a811a5038adc3014fb149274da86b8bd900d
parent 04e59b17
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -1105,10 +1105,9 @@ public class LockPatternUtils {
    @UnsupportedAppUsage
    public long setLockoutAttemptDeadline(int userId, int timeoutMs) {
        final long deadline = SystemClock.elapsedRealtime() + timeoutMs;
        if (isSpecialUserId(userId)) {
            // For secure password storage (that is required for special users such as FRP), the
            // underlying storage also enforces the deadline. Since we cannot store settings
            // for special users, don't.
        if (userId == USER_FRP) {
            // For secure password storage (that is required for FRP), the underlying storage also
            // enforces the deadline. Since we cannot store settings for the FRP user, don't.
            return deadline;
        }
        mLockoutDeadlines.put(userId, deadline);