Change thread sort order

This commit is contained in:
M66B
2020-02-10 11:33:57 +01:00
parent b5e31ba603
commit a87f3ea025
2 changed files with 7 additions and 7 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.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" +
" WHEN folder.type = '" + EntityFolder.TRASH + "' THEN 5" +
" WHEN folder.type = '" + EntityFolder.JUNK + "' THEN 6" +
" WHEN folder.type = '" + EntityFolder.SYSTEM + "' THEN 7" +
" WHEN folder.type = '" + EntityFolder.USER + "' THEN 8" +
" WHEN folder.type = '" + EntityFolder.ARCHIVE + "' 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);