We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 329d98f + 084f7f7 commit e344f1fCopy full SHA for e344f1f
src/vs/workbench/contrib/experiments/common/experimentService.ts
@@ -233,7 +233,7 @@ export class ExperimentService extends Disposable implements IExperimentService
233
return []; // TODO@sbatten add CLI argument (https://github.com/microsoft/vscode-internalbacklog/issues/2855)
234
}
235
236
- const experimentsUrl = this.productService.experimentsUrl;
+ const experimentsUrl = this.configurationService.getValue<string>('_workbench.experimentsUrl') || this.productService.experimentsUrl;
237
if (!experimentsUrl || this.configurationService.getValue('workbench.enableExperiments') === false) {
238
return [];
239
0 commit comments