Skip to content

Commit c48773b

Browse files
authored
1 parent 438a9d9 commit c48773b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/extensions/browser/extensionsWorkbenchService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1385,7 +1385,7 @@ export class ExtensionsWorkbenchService extends Disposable implements IExtension
13851385
const computedNotificiations: Array<Omit<IExtensionsNotification, 'dismiss'> & { key: string }> = [];
13861386
const invalidExtensions = this.local.filter(e => e.enablementState === EnablementState.DisabledByInvalidExtension && !e.isWorkspaceScoped);
13871387
if (invalidExtensions.length) {
1388-
if (invalidExtensions.some(e => e.local && e.local.manifest.engines &&
1388+
if (invalidExtensions.some(e => e.local && e.local.manifest.engines?.vscode &&
13891389
(!isEngineValid(e.local.manifest.engines.vscode, this.productService.version, this.productService.date) || areApiProposalsCompatible([...e.local.manifest.enabledApiProposals ?? []]))
13901390
)) {
13911391
computedNotificiations.push({

0 commit comments

Comments
 (0)