diff --git a/Sources/WireGuardApp/UI/macOS/LaunchedAtLoginDetector.swift b/Sources/WireGuardApp/UI/macOS/LaunchedAtLoginDetector.swift index 57003e5..94faa57 100644 --- a/Sources/WireGuardApp/UI/macOS/LaunchedAtLoginDetector.swift +++ b/Sources/WireGuardApp/UI/macOS/LaunchedAtLoginDetector.swift @@ -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 } }