Refactoring

This commit is contained in:
M66B
2019-02-28 15:19:15 +00:00
parent 561b2e699d
commit e6cfe55aa2
3 changed files with 5 additions and 4 deletions

View File

@@ -48,7 +48,8 @@ public interface DaoFolder {
@Query("SELECT folder.* FROM folder" +
" JOIN account ON account.id = folder.account" +
" WHERE account.synchronize AND folder.synchronize AND unified")
" WHERE account.synchronize" +
" AND folder.synchronize AND unified")
List<EntityFolder> getFoldersSynchronizingUnified();
@Query("SELECT folder.* FROM folder" +