Request sync for syncing folders only

This commit is contained in:
M66B
2018-12-11 18:59:02 +01:00
parent 50b0781ba9
commit 693ca7c85f
2 changed files with 3 additions and 3 deletions

View File

@@ -51,8 +51,8 @@ public interface DaoOperation {
@Query("SELECT * FROM operation ORDER BY id")
List<EntityOperation> getOperations();
@Query("SELECT * FROM operation ORDER BY id LIMIT 1")
EntityOperation getOperationFirst();
@Query("SELECT * FROM operation WHERE error IS NOT NULL")
List<EntityOperation> getOperationsError();
@Query("SELECT COUNT(id) FROM operation" +
" WHERE folder = :folder" +