Skip to content

Commit

Permalink
fix(SyncService): only log errors for now
Browse files Browse the repository at this point in the history
Signed-off-by: Max <[email protected]>

[skip ci]
  • Loading branch information
max-nextcloud authored and backportbot[bot] committed Nov 26, 2024
1 parent f8b1a4e commit 84ad253
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/SyncService.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ class SyncService {
}
this.#sendIntervalId = setInterval(() => {
if (this.#connection && !this.sending) {
this.sendStepsNow()
this.sendStepsNow().catch(err => logger.error(err))
}
}, 200)
}
Expand Down

0 comments on commit 84ad253

Please sign in to comment.