We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ac92ad commit a51bd76Copy full SHA for a51bd76
1 file changed
extensions/ql-vscode/src/query-history/query-history-manager.ts
@@ -418,6 +418,11 @@ export class QueryHistoryManager extends DisposableObject {
418
});
419
await this.refreshTreeView();
420
} else {
421
+ if (variantAnalysis.queries !== undefined) {
422
+ // This is a variant analysis that contains multiple queries, which
423
+ // is not fully supported yet. So we ignore it from the query history.
424
+ return;
425
+ }
426
void this.app.logger.log(
427
"Variant analysis status update event received for unknown variant analysis",
428
);
0 commit comments