mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 03:29:00 +01:00
Fix #89707
This commit is contained in:
@@ -84,8 +84,8 @@ export class SettingsSyncService extends Disposable implements ISettingsSyncServ
|
||||
return this.channel.call('hasLocalData');
|
||||
}
|
||||
|
||||
resolveConflicts(content: string): Promise<void> {
|
||||
return this.channel.call('resolveConflicts', [content]);
|
||||
resolveConflicts(content: string, remote: boolean): Promise<void> {
|
||||
return this.channel.call('resolveConflicts', [content, remote]);
|
||||
}
|
||||
|
||||
resolveSettingsConflicts(conflicts: { key: string, value: any | undefined }[]): Promise<void> {
|
||||
|
||||
@@ -49,8 +49,8 @@ export class UserDataSyncService extends Disposable implements IUserDataSyncServ
|
||||
return this.channel.call('sync');
|
||||
}
|
||||
|
||||
resolveConflictsAndContinueSync(content: string): Promise<void> {
|
||||
return this.channel.call('resolveConflictsAndContinueSync', [content]);
|
||||
resolveConflictsAndContinueSync(content: string, remote: boolean): Promise<void> {
|
||||
return this.channel.call('resolveConflictsAndContinueSync', [content, remote]);
|
||||
}
|
||||
|
||||
reset(): Promise<void> {
|
||||
|
||||
Reference in New Issue
Block a user