mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-19 05:38:31 +00:00
Small improvement
This commit is contained in:
parent
0186043fc7
commit
80394b6f46
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue