Fixed showing send operations

This commit is contained in:
M66B 2018-12-21 09:03:54 +01:00
parent fa8952404a
commit 57f86d7b9b
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ public interface DaoOperation {
@Query("SELECT operation.*, account.name AS accountName, folder.name AS folderName" +
" FROM operation" +
" JOIN folder ON folder.id = operation.folder" +
" JOIN account ON account.id = folder.account" +
" LEFT JOIN account ON account.id = folder.account" +
" ORDER BY operation.id")
LiveData<List<TupleOperationEx>> liveOperations();