We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e23f561 commit a1cf7b1Copy full SHA for a1cf7b1
src/main/kotlin/app/model/Commit.kt
@@ -34,7 +34,7 @@ data class Commit(
34
35
rehash = DigestUtils.sha256Hex(revCommit.id.name)
36
author = Author(revCommit.authorIdent.name,
37
- revCommit.authorIdent.emailAddress)
+ revCommit.authorIdent.emailAddress.toLowerCase())
38
dateTimestamp = revCommit.authorIdent.getWhen().time / 1000
39
dateTimeZoneOffset = revCommit.authorIdent.timeZoneOffset
40
treeRehash = DigestUtils.sha256Hex(revCommit.tree.name)
0 commit comments