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]>
  • Loading branch information
max-nextcloud authored and mejo- committed Nov 26, 2024
1 parent a18c44b commit 16e891f
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 @@ -182,7 +182,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 16e891f

Please sign in to comment.