Skip to content

Commit 5ce6891

Browse files
committed
Make Sync Optional on SW Start (#12467)
1 parent a1ce1ad commit 5ce6891

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/browser/src/background/main.background.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1336,7 +1336,7 @@ export default class MainBackground {
13361336
return new Promise<void>((resolve) => {
13371337
setTimeout(async () => {
13381338
await this.refreshBadge();
1339-
await this.fullSync(true);
1339+
await this.fullSync(false);
13401340
this.taskSchedulerService.setInterval(
13411341
ScheduledTaskNames.scheduleNextSyncInterval,
13421342
5 * 60 * 1000, // check every 5 minutes

0 commit comments

Comments
 (0)