Skip to content

Commit 2e60102

Browse files
committed
microsoft#91545 skip global state synchroniser while checking for merging
1 parent 54def40 commit 2e60102

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/platform/userDataSync/common/userDataSyncService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ export class UserDataSyncService extends Disposable implements IUserDataSyncServ
220220
if (!(await this.hasLocalData())) {
221221
return false;
222222
}
223-
for (const synchroniser of this.synchronisers) {
223+
for (const synchroniser of [this.settingsSynchroniser, this.keybindingsSynchroniser, this.snippetsSynchroniser, this.extensionsSynchroniser]) {
224224
const preview = await synchroniser.getSyncPreview();
225225
if (preview.hasLocalChanged || preview.hasRemoteChanged) {
226226
return true;

0 commit comments

Comments
 (0)