Skip to content

Commit

Permalink
fix interval time
Browse files Browse the repository at this point in the history
  • Loading branch information
typeling1578 committed Nov 18, 2024
1 parent 3afbf2f commit 23c09df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion background.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ await settings.init();

const settings_remote = new remoteSettings();
await settings_remote.init();
setInterval(async () => await settings_remote.sync(), 1 * 60 * 1000); // 30 minutes
setInterval(async () => await settings_remote.sync(), 30 * 60 * 1000); // 30 minutes

// change user-agent
browser.webRequest.onBeforeSendHeaders.addListener(
Expand Down

0 comments on commit 23c09df

Please sign in to comment.