Skip to content

Commit 01ef3f7

Browse files
authored
1 parent e9b254e commit 01ef3f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/platform/extensionManagement/common/extensionsScannerService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,7 @@ class ExtensionsScanner extends Disposable {
657657
const type = metadata?.isSystem ? ExtensionType.System : input.type;
658658
const isBuiltin = type === ExtensionType.System || !!metadata?.isBuiltin;
659659
manifest = await this.translateManifest(input.location, manifest, ExtensionScannerInput.createNlsConfiguration(input));
660-
if (manifest.enabledApiProposals && !this.extensionsEnabledWithApiProposalVersion?.includes(id.toLowerCase())) {
660+
if (manifest.enabledApiProposals && this.extensionsEnabledWithApiProposalVersion?.includes(id.toLowerCase())) {
661661
manifest.enabledApiProposals = parseEnabledApiProposalNames([...manifest.enabledApiProposals]);
662662
}
663663
const extension: IRelaxedScannedExtension = {

0 commit comments

Comments
 (0)