mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-06 13:35:44 +01:00
use author ident instead of commit ident
This commit is contained in:
@@ -145,7 +145,7 @@ public class GitChangesetConverter implements Closeable
|
||||
}
|
||||
|
||||
long date = GitUtil.getCommitTime(commit);
|
||||
PersonIdent authorIndent = commit.getCommitterIdent();
|
||||
PersonIdent authorIndent = commit.getAuthorIdent();
|
||||
Person author = new Person(authorIndent.getName(),
|
||||
authorIndent.getEmailAddress());
|
||||
String message = commit.getShortMessage();
|
||||
|
||||
Reference in New Issue
Block a user