ChatMessagesAdapter: post-merge fix

This commit is contained in:
Alibek Omarov 2020-12-01 22:48:54 +03:00
parent 781586a009
commit 9d41527168
1 changed files with 3 additions and 3 deletions

View File

@ -130,10 +130,10 @@ class ChatMessagesViewHolder(view: View) : RecyclerView.ViewHolder(view) {
} else {
attachmentLayout.visibility = View.VISIBLE
val previewUrl: String = attachment.previewUrl
val description: String? = attachment.description
val previewUrl = attachment.previewUrl
val description = attachment.description
if(description != null && TextUtils.isEmpty(description) ) {
if(TextUtils.isEmpty(description)) {
attachmentView.contentDescription = description
} else {
attachmentView.contentDescription = attachmentView.context