We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
await
1 parent b6bf683 commit 2cd1a99Copy full SHA for 2cd1a99
1 file changed
extensions/ql-vscode/src/codeql-cli/cli.ts
@@ -1785,9 +1785,9 @@ export class CliVersionConstraint {
1785
1786
async preservesExtensiblePredicatesInMrvaPack() {
1787
// Negated, because we _stopped_ preserving these in 2.16.1.
1788
- return !this.isVersionAtLeast(
+ return !(await this.isVersionAtLeast(
1789
CliVersionConstraint.CLI_VERSION_WITHOUT_MRVA_EXTENSIBLE_PREDICATE_HACK,
1790
- );
+ ));
1791
}
1792
1793
async supportsMrvaPackCreate(): Promise<boolean> {
0 commit comments