We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d97c8e8 commit db6aadbCopy full SHA for db6aadb
extensions/ql-vscode/src/query-history.ts
@@ -192,7 +192,7 @@ export class QueryHistoryManager {
192
193
async handleShowQueryLog(queryHistoryItem: CompletedQuery) {
194
if (queryHistoryItem.logFileLocation) {
195
- const uri = vscode.Uri.parse(queryHistoryItem.logFileLocation);
+ const uri = vscode.Uri.file(queryHistoryItem.logFileLocation);
196
try {
197
await vscode.window.showTextDocument(uri, {
198
});
0 commit comments