mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-03 11:28:41 +01:00
Cancel snooze on moving to junk
This commit is contained in:
@@ -241,7 +241,9 @@ public class EntityOperation {
|
||||
}
|
||||
|
||||
if (message.ui_snoozed != null &&
|
||||
(EntityFolder.ARCHIVE.equals(target.type) || EntityFolder.TRASH.equals(target.type))) {
|
||||
(EntityFolder.ARCHIVE.equals(target.type) ||
|
||||
EntityFolder.TRASH.equals(target.type) ||
|
||||
EntityFolder.JUNK.equals(target.type))) {
|
||||
message.ui_snoozed = null;
|
||||
EntityMessage.snooze(context, message.id, null);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user