Fixed POP3 move sent>inbox

This commit is contained in:
M66B 2022-01-09 09:30:52 +01:00
parent 547b5c1b23
commit 4d193d81ed
1 changed files with 1 additions and 1 deletions

View File

@ -3139,7 +3139,7 @@ public class FragmentMessages extends FragmentBase implements SharedPreferences.
boolean isInbox = EntityFolder.INBOX.equals(folder.type);
boolean isArchive = EntityFolder.ARCHIVE.equals(folder.type);
boolean isTrash = (EntityFolder.TRASH.equals(folder.type) || account.protocol != EntityAccount.TYPE_IMAP);
boolean isTrash = (EntityFolder.TRASH.equals(folder.type));
boolean isJunk = EntityFolder.JUNK.equals(folder.type);
boolean isDrafts = EntityFolder.DRAFTS.equals(folder.type);
boolean isSent = EntityFolder.SENT.equals(folder.type);