File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/vs/workbench/contrib/extensions/browser Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1237,8 +1237,8 @@ export class ExtensionsWorkbenchService extends Disposable implements IExtension
1237
1237
// Skip if check updates only for builtin extensions and current extension is not builtin.
1238
1238
continue ;
1239
1239
}
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
1242
1242
continue ;
1243
1243
}
1244
1244
infos . push ( { ...installed . identifier , preRelease : ! ! installed . local ?. preRelease } ) ;
You can’t perform that action at this time.
0 commit comments