mirror of
https://github.com/nextcloud/talk-android
synced 2025-07-13 15:54:59 +01:00
parent
03515ea592
commit
53bb90146b
@ -120,8 +120,8 @@ open class ConversationsPresenter(context: Context, onElementClick: ((Page, Hold
|
||||
conversation.lastMessage!!.lastMessageDisplayText
|
||||
)
|
||||
} else {
|
||||
authorDisplayName = if (!TextUtils.isEmpty(conversation.lastMessage!!.actorDisplayName))
|
||||
conversation.lastMessage!!.actorDisplayName
|
||||
authorDisplayName = if (!TextUtils.isEmpty(conversation.lastMessage?.actorDisplayName)) {
|
||||
conversation.lastMessage?.actorDisplayName!!.substringBefore(" ") }
|
||||
else if ("guests" == conversation.lastMessage!!.actorType)
|
||||
context.getString(R.string.nc_guest)
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user