Fixed thread sort order

This commit is contained in:
M66B 2020-02-10 11:14:21 +01:00
parent 30f7643a11
commit b5e31ba603
1 changed files with 5 additions and 5 deletions

View File

@ -186,11 +186,11 @@ public interface DaoMessage {
" WHEN folder.type = '" + EntityFolder.OUTBOX + "' THEN 2" +
" WHEN folder.type = '" + EntityFolder.DRAFTS + "' THEN 3" +
" WHEN folder.type = '" + EntityFolder.SENT + "' THEN 4" +
" WHEN folder.type = '" + EntityFolder.SYSTEM + "' THEN 5" +
" WHEN folder.type = '" + EntityFolder.USER + "' THEN 6" +
" WHEN folder.type = '" + EntityFolder.ARCHIVE + "' THEN 7" +
" WHEN folder.type = '" + EntityFolder.TRASH + "' THEN 8" +
" WHEN folder.type = '" + EntityFolder.JUNK + "' THEN 9" +
" WHEN folder.type = '" + EntityFolder.ARCHIVE + "' THEN 5" +
" WHEN folder.type = '" + EntityFolder.TRASH + "' THEN 6" +
" WHEN folder.type = '" + EntityFolder.JUNK + "' THEN 7" +
" WHEN folder.type = '" + EntityFolder.SYSTEM + "' THEN 8" +
" WHEN folder.type = '" + EntityFolder.USER + "' THEN 9" +
" ELSE 999 END")
// The folder type sort order should match the duplicate algorithm
DataSource.Factory<Integer, TupleMessageEx> pagedThread(long account, String thread, Long id, boolean ascending, boolean debug);