Skip to content

Commit 7e734bd

Browse files
author
Loïc Mangeonjean
committed
fix: also include user builtin extensions
1 parent 23a6cf2 commit 7e734bd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vscode-patches/0083-fix-backport-configuration-editing-built-in-extensio.patch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ index ba1c33e7845..bafc4ef36a0 100644
2525
if (knownExtensionProposals.length) {
2626
return knownExtensionProposals.map(e => {
2727
diff --git a/src/vs/workbench/api/common/extHostExtensionService.ts b/src/vs/workbench/api/common/extHostExtensionService.ts
28-
index 61b03cc7ae9..2fc7b0d1922 100644
28+
index 61b03cc7ae9..5025f5b37de 100644
2929
--- a/src/vs/workbench/api/common/extHostExtensionService.ts
3030
+++ b/src/vs/workbench/api/common/extHostExtensionService.ts
3131
@@ -1177,12 +1177,14 @@ export class Extension<T extends object | null | undefined> implements vscode.Ex
@@ -39,7 +39,7 @@ index 61b03cc7ae9..2fc7b0d1922 100644
3939
this.#originExtensionId = originExtensionId;
4040
this.#identifier = description.identifier;
4141
this.id = description.identifier.value;
42-
+ this.isBuiltin = description.isBuiltin;
42+
+ this.isBuiltin = description.isBuiltin || description.isUserBuiltin;
4343
this.extensionUri = description.extensionLocation;
4444
this.extensionPath = path.normalize(originalFSPath(description.extensionLocation));
4545
this.packageJSON = description;

0 commit comments

Comments
 (0)