mirror of
https://github.com/M66B/FairEmail.git
synced 2025-12-28 00:20:50 +01:00
Case insensitive canonical email addresses
This commit is contained in:
@@ -651,7 +651,7 @@ public class Helper {
|
||||
if (extra.length > 0)
|
||||
a[0] = extra[0];
|
||||
}
|
||||
return TextUtils.join("@", a);
|
||||
return TextUtils.join("@", a).toLowerCase();
|
||||
}
|
||||
|
||||
static void writeText(File file, String content) throws IOException {
|
||||
|
||||
Reference in New Issue
Block a user