Show commit author, not committer (#27856)

Release Notes:

- Fixed a bug where the git panel displayed a commit's committer in
place of its author.
This commit is contained in:
Max Brunsfeld 2025-04-01 09:55:56 -07:00 committed by GitHub
parent 76871056f5
commit ada8b0f822
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 13 additions and 13 deletions

View file

@ -133,8 +133,8 @@ pub struct CommitDetails {
pub sha: SharedString,
pub message: SharedString,
pub commit_timestamp: i64,
pub committer_email: SharedString,
pub committer_name: SharedString,
pub author_email: SharedString,
pub author_name: SharedString,
}
#[derive(Debug)]
@ -410,10 +410,10 @@ impl GitRepository for RealGitRepository {
.to_string()
.into(),
commit_timestamp: commit.time().seconds(),
committer_email: String::from_utf8_lossy(commit.committer().email_bytes())
author_email: String::from_utf8_lossy(commit.author().email_bytes())
.to_string()
.into(),
committer_name: String::from_utf8_lossy(commit.committer().name_bytes())
author_name: String::from_utf8_lossy(commit.author().name_bytes())
.to_string()
.into(),
};