mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-26 17:57:16 +00:00
Unflag auto archived messages
This commit is contained in:
parent
ddb280b739
commit
1f6c5f2021
1 changed files with 5 additions and 2 deletions
|
@ -4913,8 +4913,11 @@ public class FragmentCompose extends FragmentBase {
|
|||
archive != null && !archive.id.equals(threaded.folder) &&
|
||||
!EntityFolder.isOutgoing(source.type) &&
|
||||
!EntityFolder.TRASH.equals(source.type) &&
|
||||
!EntityFolder.JUNK.equals(source.type))
|
||||
EntityOperation.queue(context, threaded, EntityOperation.MOVE, archive.id, repliedto);
|
||||
!EntityFolder.JUNK.equals(source.type)) {
|
||||
if (repliedto)
|
||||
EntityOperation.queue(context, threaded, EntityOperation.SEEN, true);
|
||||
EntityOperation.queue(context, threaded, EntityOperation.MOVE, archive.id);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue