1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-03 21:55:13 +00:00

Disable auto read when moving from junk to inbox

This commit is contained in:
M66B 2021-11-14 08:06:54 +01:00
parent 54662d0428
commit 0789569664

View file

@ -205,6 +205,10 @@ public class EntityOperation {
EntityFolder.TRASH.equals(target.type))
autoread = true;
if (EntityFolder.JUNK.equals(source.type) &&
EntityFolder.INBOX.equals(target.type))
autoread = false;
jargs.put(1, autoread);
jargs.put(3, autounflag);