mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-26 17:57:16 +00:00
Change thread sort order
This commit is contained in:
parent
b5e31ba603
commit
a87f3ea025
2 changed files with 7 additions and 7 deletions
|
@ -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);
|
||||
|
|
|
@ -153,11 +153,11 @@ public class EntityFolder extends EntityOrder implements Serializable {
|
|||
OUTBOX,
|
||||
DRAFTS,
|
||||
SENT,
|
||||
ARCHIVE,
|
||||
TRASH,
|
||||
JUNK,
|
||||
SYSTEM,
|
||||
USER
|
||||
USER,
|
||||
ARCHIVE
|
||||
));
|
||||
|
||||
private static Map<String, String> GUESS_FOLDER_TYPE = new HashMap<String, String>() {{
|
||||
|
|
Loading…
Reference in a new issue