Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gulzar1996 committed Oct 16, 2024
1 parent cad3660 commit 3f63501
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ class PreviewFragment : Fragment() {
if (setTextOnce.not()) {
setupUI(room.localPeer?.hmsRole?.name.orEmpty())
binding.nameInitials.visibility = View.VISIBLE
binding.nameInitials.text = NameUtils.getInitials(room.localPeer!!.name)
room.localPeer?.name?.let { binding.nameInitials.text = it }
binding.editTextName.setText(
room.localPeer?.name.orEmpty(), TextView.BufferType.EDITABLE
)
Expand Down

0 comments on commit 3f63501

Please sign in to comment.