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:
parent
54662d0428
commit
0789569664
1 changed files with 4 additions and 0 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue