mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-25 01:06:04 +00:00
Order child folders by name
This commit is contained in:
parent
41be2b43b5
commit
1aa57a5aae
1 changed files with 2 additions and 1 deletions
|
@ -176,7 +176,8 @@ public interface DaoFolder {
|
|||
List<EntityFolder> getNotifyingFolders(long account);
|
||||
|
||||
@Query("SELECT * FROM folder" +
|
||||
" WHERE parent = :parent")
|
||||
" WHERE parent = :parent" +
|
||||
" ORDER BY name COLLATE NOCASE")
|
||||
List<EntityFolder> getChildFolders(long parent);
|
||||
|
||||
@Query("SELECT folder.type" +
|
||||
|
|
Loading…
Reference in a new issue