compare with local action

This commit is contained in:
Sandeep Somavarapu
2020-03-05 17:52:50 +01:00
parent ecf67444f8
commit d23e8a3c7d
9 changed files with 87 additions and 32 deletions

View File

@@ -84,8 +84,8 @@ export class SettingsSyncService extends Disposable implements ISettingsSyncServ
return this.channel.call('resolveConflicts', [conflicts]);
}
getRemoteContent(ref?: string): Promise<string | null> {
return this.channel.call('getRemoteContent', [ref]);
getRemoteContent(ref?: string, fragment?: string): Promise<string | null> {
return this.channel.call('getRemoteContent', [ref, fragment]);
}
getRemoteContentFromPreview(): Promise<string | null> {