mirror of https://github.com/M66B/FairEmail.git
Prevent hidden messages from showing up on sync
This commit is contained in:
parent
5d2a1c4266
commit
146b4e1e6e
|
@ -2261,7 +2261,7 @@ class Core {
|
|||
" keywords=" + TextUtils.join(" ", keywords));
|
||||
}
|
||||
|
||||
if (message.ui_hide &&
|
||||
if (message.ui_hide && message.ui_snoozed == null &&
|
||||
db.operation().getOperationCount(folder.id, message.id) == 0) {
|
||||
update = true;
|
||||
message.ui_hide = false;
|
||||
|
|
Loading…
Reference in New Issue