1
0
Fork 0
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:
M66B 2021-02-13 19:44:16 +01:00
parent ddb280b739
commit 1f6c5f2021

View file

@ -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);
}
}
}
}