Skip to content

Commit

Permalink
fix: Reduce intervention frequency to avoid annoying users
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Klehr <[email protected]>
  • Loading branch information
marcelklehr committed Mar 5, 2025
1 parent e116e86 commit 6ff0128
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/browser/BrowserController.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import * as Sentry from '@sentry/browser'
const INACTIVITY_TIMEOUT = 7 * 1000 // 7 seconds
const DEFAULT_SYNC_INTERVAL = 15 // 15 minutes
const STALE_SYNC_TIME = 1000 * 60 * 60 * 24 * 2 // two days
const INTERVENTION_INTERVAL = 1000 * 60 * 60 * 25 * 75 // 75 days
const INTERVENTION_INTERVAL = 1000 * 60 * 60 * 25 * 91 // 91 days

class AlarmManager {
constructor(ctl) {
Expand Down

0 comments on commit 6ff0128

Please sign in to comment.