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
1 changed files with 4 additions and 0 deletions

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