1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-21 21:57:19 +00:00

Prevent moving from archive to archive

This commit is contained in:
M66B 2018-12-27 13:55:51 +00:00
parent db41c5d85d
commit c4416c190a

View file

@ -1379,7 +1379,8 @@ public class FragmentMessages extends FragmentEx {
trashable = true;
if (!EntityFolder.isOutgoing(folder.type) &&
!EntityFolder.TRASH.equals(folder.type) &&
!EntityFolder.JUNK.equals(folder.type))
!EntityFolder.JUNK.equals(folder.type) &&
!EntityFolder.ARCHIVE.equals(folder.type))
archivable = true;
}