590
591
private updateConflicts(): void {
592
>
const conflicts = this.getActiveProfileSynchronizers().map(synchronizer => synchronizer.conflicts).flat();
userDataSyncService.ts
593
>
if (!equals(this._conflicts, conflicts, (a, b) => a.profile.id === b.profile.id && a.syncResource === b.syncResource && equals(a.conflicts, b.conflicts, (a, b) => isEqual(a.previewResource, b.previewResource)))) {
594
>
this._conflicts = conflicts;
595
>
this._onDidChangeConflicts.fire(conflicts);
596
>
}
597
>
}
598
599
private updateLastSyncTime(): void {