This commit is contained in:
Sandeep Somavarapu
2020-04-15 14:48:07 +02:00
parent 17e606160b
commit db64c5967b
@@ -87,10 +87,11 @@ export class WorkspaceService extends Disposable implements IConfigurationServic
}
this.workspaceConfiguration = this._register(new WorkspaceConfiguration(configurationCache, fileService));
this._register(this.workspaceConfiguration.onDidUpdateConfiguration(() => {
this.onWorkspaceConfigurationChanged();
if (this.workspaceConfiguration.loaded) {
this.releaseWorkspaceBarrier();
}
this.onWorkspaceConfigurationChanged().then(() => {
if (this.workspaceConfiguration.loaded) {
this.releaseWorkspaceBarrier();
}
});
}));
this._register(Registry.as<IConfigurationRegistry>(Extensions.Configuration).onDidSchemaChange(e => this.registerConfigurationSchemas()));