Skip to content

Commit 81a6b23

Browse files
committed
Fix interpretation path bug
1 parent 99d0e39 commit 81a6b23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/ql-vscode/src/interface.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ export class InterfaceManager extends DisposableObject {
269269
}
270270

271271
private async getTruncatedResults(metadata: QueryMetadata | undefined, resultsPaths: ResultsPaths, sourceInfo: cli.SourceInfo | undefined, sourceLocationPrefix: string): Promise<Interpretation> {
272-
const sarif = await interpretResults(this.cliServer, metadata, resultsPaths.interpretedResultsPath, sourceInfo);
272+
const sarif = await interpretResults(this.cliServer, metadata, resultsPaths.resultsPath, sourceInfo);
273273
// For performance reasons, limit the number of results we try
274274
// to serialize and send to the webview. TODO: possibly also
275275
// limit number of paths per result, number of steps per path,

0 commit comments

Comments
 (0)