mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-24 23:12:55 +00:00
Skip unhide on browse
This commit is contained in:
parent
f0058de11b
commit
24126504a6
1 changed files with 2 additions and 1 deletions
|
@ -1455,7 +1455,8 @@ class Core {
|
|||
" keywords=" + TextUtils.join(" ", keywords));
|
||||
}
|
||||
|
||||
if (message.ui_hide && db.operation().getOperationCount(folder.id, message.id) == 0) {
|
||||
if (message.ui_hide && !browsed &&
|
||||
db.operation().getOperationCount(folder.id, message.id) == 0) {
|
||||
update = true;
|
||||
message.ui_hide = false;
|
||||
Log.i(folder.name + " updated id=" + message.id + " uid=" + message.uid + " unhide");
|
||||
|
|
Loading…
Reference in a new issue