mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-18 13:21:02 +00:00
Skip $Classified for displaying
This commit is contained in:
parent
c213cb3e56
commit
a6fb504be3
1 changed files with 1 additions and 1 deletions
|
@ -1090,7 +1090,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
}
|
||||
|
||||
ivFound.setVisibility(message.ui_found && found ? View.VISIBLE : View.GONE);
|
||||
ivClassified.setVisibility(message.auto_classified || message.hasKeyword("$Classified") ? View.VISIBLE : View.GONE);
|
||||
ivClassified.setVisibility(message.auto_classified ? View.VISIBLE : View.GONE);
|
||||
|
||||
int snoozy = (message.ui_snoozed != null && message.ui_snoozed == Long.MAX_VALUE
|
||||
? R.drawable.twotone_visibility_off_24
|
||||
|
|
Loading…
Reference in a new issue