mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-23 22:51:02 +00:00
Simplification
This commit is contained in:
parent
8b647102cd
commit
c6961a1c06
1 changed files with 1 additions and 6 deletions
|
@ -7640,12 +7640,7 @@ public class FragmentMessages extends FragmentBase
|
|||
db.message().setMessageUiIgnored(message.id, true);
|
||||
}
|
||||
|
||||
if (account.protocol != EntityAccount.TYPE_IMAP) {
|
||||
if (account.auto_seen)
|
||||
EntityOperation.queue(context, message, EntityOperation.SEEN, true);
|
||||
if (!message.content)
|
||||
EntityOperation.queue(context, message, EntityOperation.BODY);
|
||||
} else if (message.uid != null) {
|
||||
if (account.protocol != EntityAccount.TYPE_IMAP || message.uid != null) {
|
||||
if (account.auto_seen)
|
||||
EntityOperation.queue(context, message, EntityOperation.SEEN, true);
|
||||
if (!message.content)
|
||||
|
|
Loading…
Reference in a new issue