mirror of https://github.com/M66B/FairEmail.git
Cancel snooze on moving to junk
This commit is contained in:
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…
Reference in New Issue