match mail addresses case insensitively for checking confirmed uids
This commit is contained in:
@@ -154,7 +154,7 @@ public class OpenPgpSignatureResultBuilder {
|
|||||||
private static boolean userIdListContainsAddress(String senderAddress, ArrayList<String> confirmedUserIds) {
|
private static boolean userIdListContainsAddress(String senderAddress, ArrayList<String> confirmedUserIds) {
|
||||||
for (String rawUserId : confirmedUserIds) {
|
for (String rawUserId : confirmedUserIds) {
|
||||||
UserId userId = OpenPgpUtils.splitUserId(rawUserId);
|
UserId userId = OpenPgpUtils.splitUserId(rawUserId);
|
||||||
if (senderAddress.equals(userId.email)) {
|
if (senderAddress.equalsIgnoreCase(userId.email)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user