mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-02 20:45:57 +00:00
Fixed auto read
This commit is contained in:
parent
72a6eaced1
commit
17a6ef1a1b
1 changed files with 4 additions and 0 deletions
|
@ -500,6 +500,10 @@ class Core {
|
|||
if (imessage == null)
|
||||
throw new MessageRemovedException();
|
||||
|
||||
// Auto read
|
||||
if (autoread && ifolder.getPermanentFlags().contains(Flags.Flag.SEEN))
|
||||
imessage.setFlag(Flags.Flag.SEEN, true);
|
||||
|
||||
// Get target folder
|
||||
EntityFolder target = db.folder().getFolder(id);
|
||||
if (target == null)
|
||||
|
|
Loading…
Reference in a new issue