Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix(SyncService): only log errors for now
Signed-off-by: Max <[email protected]>
  • Loading branch information
max-nextcloud committed Nov 26, 2024
commit 511b30453ea5f4b5afd73255176050352b1d588b
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
Loading