Skip to content

Commit a1cf7b1

Browse files
fix: different case email problem
1 parent e23f561 commit a1cf7b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/app/model/Commit.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ data class Commit(
3434

3535
rehash = DigestUtils.sha256Hex(revCommit.id.name)
3636
author = Author(revCommit.authorIdent.name,
37-
revCommit.authorIdent.emailAddress)
37+
revCommit.authorIdent.emailAddress.toLowerCase())
3838
dateTimestamp = revCommit.authorIdent.getWhen().time / 1000
3939
dateTimeZoneOffset = revCommit.authorIdent.timeZoneOffset
4040
treeRehash = DigestUtils.sha256Hex(revCommit.tree.name)

0 commit comments

Comments
 (0)