Skip to content

Commit 6ff0128

Browse files
committed
fix: Reduce intervention frequency to avoid annoying users
Signed-off-by: Marcel Klehr <[email protected]>
1 parent e116e86 commit 6ff0128

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
@@ -13,7 +13,7 @@ import * as Sentry from '@sentry/browser'
1313
const INACTIVITY_TIMEOUT = 7 * 1000 // 7 seconds
1414
const DEFAULT_SYNC_INTERVAL = 15 // 15 minutes
1515
const STALE_SYNC_TIME = 1000 * 60 * 60 * 24 * 2 // two days
16-
const INTERVENTION_INTERVAL = 1000 * 60 * 60 * 25 * 75 // 75 days
16+
const INTERVENTION_INTERVAL = 1000 * 60 * 60 * 25 * 91 // 91 days
1717

1818
class AlarmManager {
1919
constructor(ctl) {

0 commit comments

Comments
 (0)