mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-31 20:25:38 +00:00
Show no auth for incoming messages
This commit is contained in:
parent
56a6f1935f
commit
8de02847eb
1 changed files with 1 additions and 1 deletions
|
@ -1237,7 +1237,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
ibAuth.setImageLevel(auths + 1);
|
||||
ibAuth.setImageTintList(ColorStateList.valueOf(
|
||||
verified ? colorVerified : colorControlNormal));
|
||||
ibAuth.setVisibility(auths > 0 ? View.VISIBLE : View.GONE);
|
||||
ibAuth.setVisibility(auths > 0 || !outgoing ? View.VISIBLE : View.GONE);
|
||||
} else
|
||||
ibAuth.setVisibility(View.GONE);
|
||||
|
||||
|
|
Loading…
Reference in a new issue