Use commit time instead of author time for push commits (#4037)

master
Unknwon 2017-01-30 13:38:16 -05:00
parent 185c90df12
commit 6bfbed0616
No known key found for this signature in database
GPG Key ID: FB9F411CDD69BEC1
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ func CommitToPushCommit(commit *git.Commit) *PushCommit {
AuthorName: commit.Author.Name,
CommitterEmail: commit.Committer.Email,
CommitterName: commit.Committer.Name,
Timestamp: commit.Author.When,
Timestamp: commit.Committer.When,
}
}