Merge "Fix jank: Don't write lockout deadline if not needed" into mnc-dr-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
c25d546050
@@ -1074,7 +1074,7 @@ public class LockPatternUtils {
|
|||||||
long deadline = getLong(LOCKOUT_ATTEMPT_DEADLINE, 0L, userId);
|
long deadline = getLong(LOCKOUT_ATTEMPT_DEADLINE, 0L, userId);
|
||||||
final long timeoutMs = getLong(LOCKOUT_ATTEMPT_TIMEOUT_MS, 0L, userId);
|
final long timeoutMs = getLong(LOCKOUT_ATTEMPT_TIMEOUT_MS, 0L, userId);
|
||||||
final long now = SystemClock.elapsedRealtime();
|
final long now = SystemClock.elapsedRealtime();
|
||||||
if (deadline < now) {
|
if (deadline < now && deadline != 0) {
|
||||||
// timeout expired
|
// timeout expired
|
||||||
setLong(LOCKOUT_ATTEMPT_DEADLINE, 0, userId);
|
setLong(LOCKOUT_ATTEMPT_DEADLINE, 0, userId);
|
||||||
setLong(LOCKOUT_ATTEMPT_TIMEOUT_MS, 0, userId);
|
setLong(LOCKOUT_ATTEMPT_TIMEOUT_MS, 0, userId);
|
||||||
|
|||||||
Reference in New Issue
Block a user