UI: macOS: increase login detector file timeout

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
Jason A. Donenfeld 2021-09-23 06:19:48 +02:00
parent 03a59ff38e
commit 75b6925deb
1 changed files with 1 additions and 1 deletions

View File

@ -14,6 +14,6 @@ class LaunchedAtLoginDetector {
let then = data.withUnsafeBytes { ptr in
ptr.load(as: UInt64.self)
}
return now - then <= 5000000000
return now - then <= 20000000000
}
}