Skip to content

Commit

Permalink
fix: different case email problem
Browse files Browse the repository at this point in the history
  • Loading branch information
anatolystansler committed Mar 16, 2018
1 parent e23f561 commit a1cf7b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/app/model/Commit.kt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ data class Commit(

rehash = DigestUtils.sha256Hex(revCommit.id.name)
author = Author(revCommit.authorIdent.name,
revCommit.authorIdent.emailAddress)
revCommit.authorIdent.emailAddress.toLowerCase())
dateTimestamp = revCommit.authorIdent.getWhen().time / 1000
dateTimeZoneOffset = revCommit.authorIdent.timeZoneOffset
treeRehash = DigestUtils.sha256Hex(revCommit.tree.name)
Expand Down

0 comments on commit a1cf7b1

Please sign in to comment.