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 <max@nextcloud.com>
  • Loading branch information
max-nextcloud authored and mejo- committed Nov 27, 2024
1 parent ca62b85 commit cc6fcbd
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 cc6fcbd

Please sign in to comment.