Skip to content

Commit 03315b0

Browse files
committed
Fixes #3057 wrong property set
1 parent 59d392e commit 03315b0

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
66

77
## [Unreleased]
88

9+
### Fixed
10+
11+
- Fixes [#3057](https://github.com/gitkraken/vscode-gitlens/issues/3057) - Uncommitted changes cause an error when gitlens.defaultDateSource is "committed"
12+
913
## [14.6.0] - 2023-12-13
1014

1115
### Added

src/git/parsers/blameParser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ export function parseGitBlame(
138138
}
139139
case 'committer-time':
140140
if (entry.sha === uncommitted && modifiedTime != null) {
141-
entry.authorTime = modifiedTime;
141+
entry.committerTime = modifiedTime;
142142
} else {
143143
entry.committerTime = parseInt(lineParts[1], 10) * 1000;
144144
}

0 commit comments

Comments
 (0)