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

@ -56,7 +56,7 @@ public interface DaoIdentity {
@Query("SELECT * FROM identity WHERE id = :id") @Query("SELECT * FROM identity WHERE id = :id")
EntityIdentity getIdentity(long id); EntityIdentity getIdentity(long id);
@Query("SELECT * FROM identity WHERE account = :account AND email = :email") @Query("SELECT * FROM identity WHERE account = :account AND email = :email COLLATE NOCASE")
EntityIdentity getIdentity(long account, String email); EntityIdentity getIdentity(long account, String email);
@Query("SELECT COUNT(*) FROM identity WHERE synchronize") @Query("SELECT COUNT(*) FROM identity WHERE synchronize")

View File

@ -651,7 +651,7 @@ public class Helper {
if (extra.length > 0) if (extra.length > 0)
a[0] = extra[0]; a[0] = extra[0];
} }
return TextUtils.join("@", a); return TextUtils.join("@", a).toLowerCase();
} }
static void writeText(File file, String content) throws IOException { static void writeText(File file, String content) throws IOException {