We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32c10e4 commit b49a70fCopy full SHA for b49a70f
src/client/common/application/extensions.ts
@@ -37,9 +37,9 @@ export class Extensions implements IExtensions {
37
38
private get cachedExtensions() {
39
if (!this._cachedExtensions) {
40
- this._cachedExtensions = extensions.all;
+ this._cachedExtensions = this._cachedExtensions || extensions.all;
41
extensions.onDidChange(() => {
42
43
});
44
}
45
return this._cachedExtensions;
0 commit comments