mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-07 14:05: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);
|
long date = GitUtil.getCommitTime(commit);
|
||||||
PersonIdent authorIndent = commit.getCommitterIdent();
|
PersonIdent authorIndent = commit.getAuthorIdent();
|
||||||
Person author = new Person(authorIndent.getName(),
|
Person author = new Person(authorIndent.getName(),
|
||||||
authorIndent.getEmailAddress());
|
authorIndent.getEmailAddress());
|
||||||
String message = commit.getShortMessage();
|
String message = commit.getShortMessage();
|
||||||
|
|||||||
Reference in New Issue
Block a user