mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-02 19:10:11 +01:00
Prioritize headers operation
This commit is contained in:
@@ -29,8 +29,9 @@ import java.util.List;
|
||||
@Dao
|
||||
public interface DaoOperation {
|
||||
String priority = "CASE" +
|
||||
" WHEN operation.name = '" + EntityOperation.BODY + "' THEN -2" +
|
||||
" WHEN operation.name = '" + EntityOperation.ATTACHMENT + "' THEN -1" +
|
||||
" WHEN operation.name = '" + EntityOperation.BODY + "' THEN -3" +
|
||||
" WHEN operation.name = '" + EntityOperation.ATTACHMENT + "' THEN -2" +
|
||||
" WHEN operation.name = '" + EntityOperation.HEADERS + "' THEN -1" +
|
||||
" WHEN operation.name = '" + EntityOperation.SYNC + "' THEN" +
|
||||
" CASE WHEN folder.account IS NULL THEN -1 ELSE 1 END" + // outbox
|
||||
" ELSE 0" +
|
||||
|
||||
Reference in New Issue
Block a user