mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-01 12:44:42 +00:00
Check public key email using ignore case sensitivity
This commit is contained in:
parent
ceb00f7d91
commit
5fb3691c23
1 changed files with 1 additions and 1 deletions
|
@ -2731,7 +2731,7 @@ public class FragmentCompose extends FragmentBase {
|
|||
boolean known = false;
|
||||
List<String> emails = EntityCertificate.getEmailAddresses(chain[0]);
|
||||
for (String email : emails)
|
||||
if (email.equals(identity.email)) {
|
||||
if (email.equalsIgnoreCase(identity.email)) {
|
||||
known = true;
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue