mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Fix extension gallery engine version check (#21000)
* Fix extension gallery engine version check * disable extension scanner tests * edit tag
This commit is contained in:
@@ -585,7 +585,7 @@ export class WebExtensionsScannerService extends Disposable implements IWebExten
|
||||
|
||||
const uuid = (<IGalleryMetadata | undefined>webExtension.metadata)?.id;
|
||||
|
||||
validations.push(...validateExtensionManifest(this.productService.version, this.productService.date, webExtension.location, manifest, false));
|
||||
validations.push(...validateExtensionManifest(this.productService.version, this.productService.vscodeVersion, this.productService.date, webExtension.location, manifest, false)); // {{SQL CARBON EDIT}} Add vs code version so we can compare both engines
|
||||
let isValid = true;
|
||||
for (const [severity, message] of validations) {
|
||||
if (severity === Severity.Error) {
|
||||
|
||||
Reference in New Issue
Block a user