File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/vs/platform/userDataSync/common Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -420,7 +420,7 @@ export class UserDataSyncService extends Disposable implements IUserDataSyncServ
420
420
return isUndefined ( result ) ? null : result ;
421
421
}
422
422
423
- if ( this . environmentService . isBuilt && ! this . productService . enableSyncingProfiles ) {
423
+ if ( this . environmentService . isBuilt && ( ! this . productService . enableSyncingProfiles || isEqual ( this . userDataSyncStoreManagementService . userDataSyncStore ?. url , this . userDataSyncStoreManagementService . userDataSyncStore ?. stableUrl ) ) ) {
424
424
return null ;
425
425
}
426
426
@@ -592,7 +592,7 @@ class ProfileSynchronizer extends Disposable {
592
592
if ( ! this . _profile . isDefault ) {
593
593
return ;
594
594
}
595
- if ( this . environmentService . isBuilt && ! this . productService . enableSyncingProfiles ) {
595
+ if ( this . environmentService . isBuilt && ( ! this . productService . enableSyncingProfiles || isEqual ( this . userDataSyncStoreManagementService . userDataSyncStore ?. url , this . userDataSyncStoreManagementService . userDataSyncStore ?. stableUrl ) ) ) {
596
596
this . logService . debug ( 'Skipping profiles sync' ) ;
597
597
return ;
598
598
}
You can’t perform that action at this time.
0 commit comments