Skip to content

Commit

Permalink
Fix #135692
Browse files Browse the repository at this point in the history
  • Loading branch information
lramos15 committed Oct 25, 2021
1 parent 910511b commit 2866063
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/git/src/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,7 @@ export class CommandCenter {
const document = window.activeTextEditor?.document;

// If the document doesn't match what we opened then don't attempt to select the range
if (document?.uri !== uri) {
if (document?.uri.toString() !== uri.toString()) {
continue;
}

Expand Down

0 comments on commit 2866063

Please sign in to comment.