Skip to content

Commit df55e03

Browse files
authored
Merge pull request #2984 from github/aeisenberg/fix-log-path
2 parents ec0e74b + 2e2051a commit df55e03

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

extensions/ql-vscode/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
- Sorted result set filenames now include a hash of the result set name instead of the full name. [#2955](https://github.com/github/vscode-codeql/pull/2955)
66
- The "Install Pack Dependencies" will now only list CodeQL packs located in the workspace. [#2960](https://github.com/github/vscode-codeql/pull/2960)
7+
- Fix a bug where the "View Query Log" action for a query history item was not working. [#2984](https://github.com/github/vscode-codeql/pull/2984)
78
- Add a command to sort items in the databases view by language. [#2993](https://github.com/github/vscode-codeql/pull/2993)
89

910
## 1.9.2 - 12 October 2023

extensions/ql-vscode/src/query-results.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ export class LocalQueryInfo {
290290
this.completedQuery = new CompletedQueryInfo(
291291
info.query,
292292
info.result,
293-
info.logFileLocation,
293+
info.query.logPath,
294294
info.successful,
295295
info.message,
296296
undefined,

0 commit comments

Comments
 (0)