mirror of
https://github.com/M66B/FairEmail.git
synced 2025-12-29 00:51:44 +01:00
Hide message on moving to junk
This commit is contained in:
@@ -131,7 +131,8 @@ public class EntityOperation {
|
||||
if (source.id.equals(target.id))
|
||||
return;
|
||||
|
||||
if (!EntityFolder.ARCHIVE.equals(source.type) || EntityFolder.TRASH.equals(target.type))
|
||||
if (!EntityFolder.ARCHIVE.equals(source.type) ||
|
||||
EntityFolder.TRASH.equals(target.type) || EntityFolder.JUNK.equals(target.type))
|
||||
db.message().setMessageUiHide(message.id, new Date().getTime());
|
||||
|
||||
if (message.ui_snoozed != null &&
|
||||
|
||||
Reference in New Issue
Block a user