This commit is contained in:
Andras Schmelczer 2026-04-21 20:01:28 +01:00
commit 9183f30b5d
14 changed files with 86 additions and 16 deletions

View file

@ -199,9 +199,9 @@ export class Syncer {
private async internalScheduleSyncForOfflineChanges(): Promise<void> {
await scheduleOfflineChanges(
{ logger: this.logger, operations: this.operations, queue: this.queue },
(path) => this.syncLocallyCreatedFile(path),
(args) => this.syncLocallyUpdatedFile(args),
(path) => this.syncLocallyDeletedFile(path),
(path) => { this.syncLocallyCreatedFile(path); },
(args) => { this.syncLocallyUpdatedFile(args); },
(path) => { this.syncLocallyDeletedFile(path); },
);
await this.scheduleDrain();