diff --git a/src/vs/workbench/api/common/extHostExtensionService.ts b/src/vs/workbench/api/common/extHostExtensionService.ts index 4b674cb4581..49eaa65d462 100644 --- a/src/vs/workbench/api/common/extHostExtensionService.ts +++ b/src/vs/workbench/api/common/extHostExtensionService.ts @@ -350,7 +350,7 @@ export abstract class AbstractExtHostExtensionService extends Disposable impleme return extUriBiasedIgnorePathCase.ignorePathCasing(key); }); // const tst = TernarySearchTree.forUris(key => true); - await Promise.all(this._myRegistry.getAllExtensionDescriptions().map(async (ext) => { + await Promise.all(extensions.map(async (ext) => { if (this._getEntryPoint(ext)) { const uri = await this._realPathExtensionUri(ext.extensionLocation); tst.set(uri, ext);