204
this.logService.info(`${this.syncResourceLogLabel}: Updated remote ${this.syncResource.syncResource}`);
205
}
207
>
// Delete the preview
208
>
try {
209
>
await this.fileService.del(this.previewResource);
210
>
} catch (e) { /* ignore */ }
211
>
212
if (lastSyncUserData?.ref !== remoteUserData.ref) {
213
>
this.logService.trace(`${this.syncResourceLogLabel}: Updating last synchronized ${this.syncResource.syncResource}...`);
abstractJsonSynchronizer.ts
214
>
await this.updateLastSyncUserData(remoteUserData);
215
>
this.logService.info(`${this.syncResourceLogLabel}: Updated last synchronized ${this.syncResource.syncResource}`);
216
>
}
217
}
218