mirror of https://github.com/M66B/FairEmail.git
Case insensitive canonical email addresses
This commit is contained in:
parent
f0e8e6211b
commit
c4e6c3f27f
|
@ -56,7 +56,7 @@ public interface DaoIdentity {
|
|||
@Query("SELECT * FROM identity WHERE id = :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);
|
||||
|
||||
@Query("SELECT COUNT(*) FROM identity WHERE synchronize")
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue