mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-22 14:11:00 +00:00
Prevent moving from archive to archive
This commit is contained in:
parent
db41c5d85d
commit
c4416c190a
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue