Skip to content

Commit f5f3b0c

Browse files
committed
fix: Increase intervention interval to twice a year
Signed-off-by: Marcel Klehr <[email protected]>
1 parent fe34580 commit f5f3b0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/browser/BrowserController.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const INACTIVITY_TIMEOUT = 7 * 1000 // 7 seconds
1414
const MAX_BACKOFF_INTERVAL = 1000 * 60 * 60 // 1 hour
1515
const DEFAULT_SYNC_INTERVAL = 15 // 15 minutes
1616
const STALE_SYNC_TIME = 1000 * 60 * 60 * 24 * 2 // two days
17-
const INTERVENTION_INTERVAL = 1000 * 60 * 60 * 24 * 91 // 91 days
17+
const INTERVENTION_INTERVAL = 1000 * 60 * 60 * 24 * 182 // 182 days
1818

1919
class AlarmManager {
2020
constructor(ctl) {

0 commit comments

Comments
 (0)