Skip to content

Commit 79f348c

Browse files
authored
1 parent a89e895 commit 79f348c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1237,8 +1237,8 @@ export class ExtensionsWorkbenchService extends Disposable implements IExtension
12371237
// Skip if check updates only for builtin extensions and current extension is not builtin.
12381238
continue;
12391239
}
1240-
if (installed.isBuiltin && (!installed.local?.identifier.uuid || (!isWeb && this.productService.quality === 'stable'))) {
1241-
// Skip checking updates for a builtin extension if it does not has Marketplace identifier or the current product is VS Code Desktop stable.
1240+
if (installed.isBuiltin && (installed.type === ExtensionType.System || !installed.local?.identifier.uuid)) {
1241+
// Skip checking updates for a builtin extension if it is a system extension or if it does not has Marketplace identifier
12421242
continue;
12431243
}
12441244
infos.push({ ...installed.identifier, preRelease: !!installed.local?.preRelease });

0 commit comments

Comments
 (0)