Room : Fix tests as there is less recomposition

This commit is contained in:
ganfra 2023-07-06 19:58:06 +02:00
parent 4911fdc15e
commit 7dbac91cd3
4 changed files with 42 additions and 37 deletions

View file

@ -177,9 +177,9 @@ class MessagesPresenter @AssistedInject constructor(
private fun MatrixRoom.avatarData(): AvatarData {
return AvatarData(
id = room.roomId.value,
name = room.displayName,
url = room.avatarUrl,
id = roomId.value,
name = displayName,
url = avatarUrl,
size = AvatarSize.TimelineRoom
)
}