Fix display name bug

pull/349/head
nielsandriesse 4 years ago
parent 45a9a42030
commit a162f7f13e

@ -90,7 +90,7 @@ class UserView : LinearLayout {
actionIndicatorImageView.setImageResource(R.drawable.ic_baseline_edit_24)
profilePictureView.glide = glide
profilePictureView.update()
nameTextView.text = getUserDisplayName(address)
nameTextView.text = if (user.isGroupRecipient) user.name else getUserDisplayName(address)
when (actionIndicator) {
ActionIndicator.None -> {
actionIndicatorImageView.visibility = View.GONE

Loading…
Cancel
Save