mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-24 07:01:05 +00:00
Show no auth when showing TLS status
This commit is contained in:
parent
76b399214a
commit
03579d8284
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 || !outgoing ? View.VISIBLE : View.GONE);
|
||||
ibAuth.setVisibility(auths > 0 || (check_tls && !outgoing) ? View.VISIBLE : View.GONE);
|
||||
} else
|
||||
ibAuth.setVisibility(View.GONE);
|
||||
|
||||
|
|
Loading…
Reference in a new issue