Skip to content

Commit

Permalink
Revert "Disable signature verification for now"
Browse files Browse the repository at this point in the history
This reverts commit da54640.
  • Loading branch information
filiptronicek committed Jun 11, 2024
1 parent 7e45771 commit 5b94ded
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,7 @@ export class ExtensionsDownloader extends Disposable {
}

const value = this.configurationService.getValue('extensions.verifySignature');
// for now we disable signature verification until we properly test it with the Open VSX deployment
return false ?? (isBoolean(value) ? value : true);
return isBoolean(value) ? value : true;
}

private async downloadVSIX(extension: IGalleryExtension, operation: InstallOperation): Promise<URI> {
Expand Down

0 comments on commit 5b94ded

Please sign in to comment.