Skip to content

Commit

Permalink
fix: parse file path correctly (#361)
Browse files Browse the repository at this point in the history
  • Loading branch information
Asaf Agami authored Jun 4, 2023
1 parent 9a647b9 commit fe250d8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export class CodeSuggestionWebviewProvider
cols: [number, number];
rows: [number, number];
};
const vscodeUri = vscode.Uri.parse(uri);
const vscodeUri = vscode.Uri.file(uri);
const range = IssueUtils.createVsCodeRangeFromRange(rows, cols, this.languages);
await vscode.commands.executeCommand(SNYK_IGNORE_ISSUE_COMMAND, {
uri: vscodeUri,
Expand Down

0 comments on commit fe250d8

Please sign in to comment.