Skip to content

Commit 6aa249d

Browse files
authored
Git - fix incorrect check (#198396)
1 parent cacd71f commit 6aa249d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/git/src/historyProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export class GitHistoryProvider implements SourceControlHistoryProvider, FileDec
6767
this._HEAD?.commit === HEAD.commit &&
6868
this._HEAD?.upstream?.name === HEAD.upstream?.name &&
6969
this._HEAD?.upstream?.remote === HEAD.upstream?.remote &&
70-
this._HEAD?.commit === HEAD.commit) {
70+
this._HEAD?.upstream?.commit === HEAD.upstream?.commit) {
7171
return;
7272
}
7373

0 commit comments

Comments
 (0)