Small improvement

This commit is contained in:
M66B 2021-04-13 11:49:23 +02:00
parent 0186043fc7
commit 80394b6f46
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ public class EntityIdentity {
if (user.equalsIgnoreCase(cemail[0]))
return true;
} else {
String input = (sender_extra_regex.contains("@") ? other : cother[0]);
String input = (sender_extra_regex.contains("@") ? other.toLowerCase() : cother[0]);
if (Pattern.matches(sender_extra_regex, input))
return true;
}