Show no auth for incoming messages

pull/194/merge
M66B 3 years ago
parent 56a6f1935f
commit 8de02847eb

@ -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…
Cancel
Save