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 6b62f04 commit 5e2210cCopy full SHA for 5e2210c
models/gpg_key.go
@@ -402,7 +402,7 @@ func ParseCommitWithSignature(c *git.Commit) *CommitVerification {
402
//Pre-check (& optimization) that emails attached to key can be attached to the commiter email and can validate
403
canValidate := false
404
for _, e := range k.Emails {
405
- if e.IsActivated && e.Email == c.Committer.Email {
+ if e.IsActivated && strings.ToLower(e.Email) == strings.ToLower(c.Committer.Email) {
406
canValidate = true
407
break
408
}
0 commit comments