Identities will only synchronize of account is synchronizing

pull/50/head
M66B 6 years ago
parent dfc30a8436
commit bed0bd84c1

@ -33,7 +33,10 @@ public interface DaoIdentity {
" JOIN account ON account.id = identity.account")
LiveData<List<TupleIdentityEx>> liveIdentities();
@Query("SELECT * FROM identity WHERE synchronize = :synchronize")
@Query("SELECT identity.* FROM identity" +
" JOIN account ON account.id = identity.account" +
" WHERE account.synchronize = :synchronize" +
" AND identity.synchronize = :synchronize")
LiveData<List<EntityIdentity>> liveIdentities(boolean synchronize);
@Query("SELECT * FROM identity")

Loading…
Cancel
Save