We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26a88c1 commit 0a0c536Copy full SHA for 0a0c536
src/vs/platform/extensionManagement/node/extensionDownloader.ts
@@ -115,7 +115,8 @@ export class ExtensionsDownloader extends Disposable {
115
}
116
117
const value = this.configurationService.getValue('extensions.verifySignature');
118
- return isBoolean(value) ? value : true;
+ // for now we disable signature verification until we properly test it with the Open VSX deployment
119
+ return false ?? (isBoolean(value) ? value : true);
120
121
122
private async downloadVSIX(extension: IGalleryExtension, operation: InstallOperation): Promise<URI> {
0 commit comments