mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-25 06:25:40 +03:00
fix
Signed-off-by: rapterjet2004 <juliuslinus1@gmail.com>
This commit is contained in:
parent
176ec82e2f
commit
903dd07a1b
1 changed files with 3 additions and 1 deletions
|
@ -232,7 +232,7 @@ class ConversationItem(
|
|||
|
||||
val text =
|
||||
if (
|
||||
chatMessage?.messageType === MessageType.REGULAR_TEXT_MESSAGE.toString()
|
||||
chatMessage?.getCalculateMessageType() == MessageType.REGULAR_TEXT_MESSAGE
|
||||
) {
|
||||
calculateRegularLastMessageText(appContext)
|
||||
} else {
|
||||
|
@ -252,6 +252,8 @@ class ConversationItem(
|
|||
appContext.getString(R.string.nc_formatted_message_you),
|
||||
lastMessageDisplayText
|
||||
)
|
||||
} else if (model.type == ConversationEnums.ConversationType.ROOM_TYPE_ONE_TO_ONE_CALL) {
|
||||
lastMessageDisplayText
|
||||
} else {
|
||||
val authorDisplayName =
|
||||
if (!TextUtils.isEmpty(chatMessage?.actorDisplayName)) {
|
||||
|
|
Loading…
Reference in a new issue