Skip to content
Snippets Groups Projects
Commit f9668c39 authored by Chun-Wei Wang's avatar Chun-Wei Wang Committed by Gerrit Code Review
Browse files

Merge "Enable lockout timeout" into main

parents c81dba07 1b28b09d
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment