Case insensitive canonical email addresses

This commit is contained in:
M66B
2019-03-08 09:32:31 +00:00
parent f0e8e6211b
commit c4e6c3f27f
2 changed files with 2 additions and 2 deletions

View File

@@ -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 {