We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6efe197 commit aee8005Copy full SHA for aee8005
1 file changed
src/vs/platform/userDataSync/common/userDataSync.ts
@@ -125,7 +125,7 @@ export interface IUserDataSyncStore {
125
}
126
127
export function getUserDataSyncStore(productService: IProductService, configurationService: IConfigurationService): IUserDataSyncStore | undefined {
128
- const value = productService[CONFIGURATION_SYNC_STORE_KEY] || configurationService.getValue<{ url: string, authenticationProviderId: string }>(CONFIGURATION_SYNC_STORE_KEY);
+ const value = configurationService.getValue<{ url: string, authenticationProviderId: string }>(CONFIGURATION_SYNC_STORE_KEY) || productService[CONFIGURATION_SYNC_STORE_KEY];
129
if (value && value.url && value.authenticationProviderId) {
130
return {
131
url: joinPath(URI.parse(value.url), 'v1'),
0 commit comments