|
@@ -135,7 +135,7 @@ class IncomingLocationMessageViewHolder(incomingView: View, payload: Any) : Mess
|
|
|
binding.messageAuthor.setText(R.string.nc_nick_guest)
|
|
|
}
|
|
|
|
|
|
- if (!message.isGrouped && !message.isOneToOneConversation) {
|
|
|
+ if (!message.isGrouped && !message.isOneToOneConversation && !message.isFormerOneToOneConversation) {
|
|
|
binding.messageUserAvatar.visibility = View.VISIBLE
|
|
|
if (message.actorType == "guests") {
|
|
|
// do nothing, avatar is set
|
|
@@ -145,7 +145,7 @@ class IncomingLocationMessageViewHolder(incomingView: View, payload: Any) : Mess
|
|
|
binding.messageUserAvatar.loadBotsAvatar()
|
|
|
}
|
|
|
} else {
|
|
|
- if (message.isOneToOneConversation) {
|
|
|
+ if (message.isOneToOneConversation || message.isFormerOneToOneConversation) {
|
|
|
binding.messageUserAvatar.visibility = View.GONE
|
|
|
} else {
|
|
|
binding.messageUserAvatar.visibility = View.INVISIBLE
|