Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSandeep Somavarapu <sasomava@microsoft.com>2022-08-23 22:24:21 +0300
committerGitHub <noreply@github.com>2022-08-23 22:24:21 +0300
commit3df9bc830145b1ec1b24c411471c86c937a97dae (patch)
tree8ebff83335fccaf85773ca976f7f41b7d2bc56f4 /src/vs/platform/extensionManagement/node/extensionManagementService.ts
parent7eacf7b0c3100a2305b0f6b70393cf467c5914b0 (diff)
Fix #148975 (#158969)
Diffstat (limited to 'src/vs/platform/extensionManagement/node/extensionManagementService.ts')
-rw-r--r--src/vs/platform/extensionManagement/node/extensionManagementService.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vs/platform/extensionManagement/node/extensionManagementService.ts b/src/vs/platform/extensionManagement/node/extensionManagementService.ts
index ece1564b77f..43714e553e0 100644
--- a/src/vs/platform/extensionManagement/node/extensionManagementService.ts
+++ b/src/vs/platform/extensionManagement/node/extensionManagementService.ts
@@ -275,7 +275,7 @@ class ExtensionsScanner extends Disposable {
const userScanOptions: ScanOptions = { includeInvalid: true, profileLocation };
let scannedExtensions: IScannedExtension[] = [];
if (type === null || type === ExtensionType.System) {
- scannedExtensions.push(...await this.extensionsScannerService.scanAllExtensions({ includeInvalid: true }, userScanOptions));
+ scannedExtensions.push(...await this.extensionsScannerService.scanAllExtensions({ includeInvalid: true }, userScanOptions, false));
} else if (type === ExtensionType.User) {
scannedExtensions.push(...await this.extensionsScannerService.scanUserExtensions(userScanOptions));
}