1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-25 01:06:04 +00:00

Prevent updating deleted accounts

This commit is contained in:
M66B 2022-04-17 12:18:15 +02:00
parent 55765d6617
commit 31a215d92b

View file

@ -155,7 +155,8 @@ public interface DaoAccount {
@Query("SELECT * FROM account" +
" WHERE user = :user" +
" AND auth_type IN (:auth_type)")
" AND auth_type IN (:auth_type)" +
" AND tbd IS NULL")
List<EntityAccount> getAccounts(String user, int[] auth_type);
@Query("SELECT * FROM account WHERE `primary`")