Cancel snooze on moving to junk

pull/206/head
M66B 3 years ago
parent 925e7e2689
commit 9d3b1fd016

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

Loading…
Cancel
Save