mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-24 16:53:37 +00:00
Drafts should not be marked read
This commit is contained in:
parent
77f16a0caf
commit
b341f41c8f
1 changed files with 2 additions and 1 deletions
|
@ -105,7 +105,8 @@ public interface DaoMessage {
|
|||
" JOIN folder ON folder.id = message.folder" +
|
||||
" WHERE message.account = :account" +
|
||||
" AND message.thread = :thread" +
|
||||
" AND folder.type <> '" + EntityFolder.OUTBOX + "'")
|
||||
" AND folder.type <> '" + EntityFolder.OUTBOX + "'" +
|
||||
" AND folder.type <> '" + EntityFolder.DRAFTS + "'")
|
||||
List<EntityMessage> getMessageByThread(long account, String thread);
|
||||
|
||||
@Query("SELECT id FROM message" +
|
||||
|
|
Loading…
Reference in a new issue