Skip to content

Commit

Permalink
Git - fix incorrect check (#198396)
Browse files Browse the repository at this point in the history
  • Loading branch information
lszomoru authored Nov 16, 2023
1 parent cacd71f commit 6aa249d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/git/src/historyProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export class GitHistoryProvider implements SourceControlHistoryProvider, FileDec
this._HEAD?.commit === HEAD.commit &&
this._HEAD?.upstream?.name === HEAD.upstream?.name &&
this._HEAD?.upstream?.remote === HEAD.upstream?.remote &&
this._HEAD?.commit === HEAD.commit) {
this._HEAD?.upstream?.commit === HEAD.upstream?.commit) {
return;
}

Expand Down

0 comments on commit 6aa249d

Please sign in to comment.