未验证 提交 dd204726 编写于 作者: A Alex Dima

Fixes #129554: Do not leave the `ExtensionsActivator` in an attempt to...

Fixes #129554: Do not leave the `ExtensionsActivator` in an attempt to activate descriptive extensions
上级 f8a24158
......@@ -309,6 +309,11 @@ export class ExtensionsActivator {
const depDesc = this._registry.getExtensionDescription(depId);
if (depDesc) {
if (!depDesc.main && !depDesc.browser) {
// this dependency does not need to activate because it is descriptive only
continue;
}
// must first wait for the dependency to activate
currentExtensionGetsGreenLight = false;
greenExtensions[ExtensionIdentifier.toKey(depId)] = {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册