提交 4e9519af 编写于 作者: R Rob Lourens

Fix #43370 - don't create settings search filters for extensions without UUIDs

上级 540a998a
......@@ -45,7 +45,8 @@ export class PreferencesSearchService extends Disposable implements IPreferences
// Filter to enabled extensions that have settings
return exts
.filter(ext => this.extensionEnablementService.isEnabled(ext.identifier))
.filter(ext => ext.manifest.contributes && ext.manifest.contributes.configuration);
.filter(ext => ext.manifest.contributes && ext.manifest.contributes.configuration)
.filter(ext => !!ext.identifier.uuid);
});
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册