Commit 6c35524e authored by Leonardo Aramaki's avatar Leonardo Aramaki

When converting Users to ChatRooms show the username first in order to better...

When converting Users to ChatRooms show the username first in order to better identify users with the same full name
parent 75719076
......@@ -210,7 +210,7 @@ class ChatRoomsPresenter @Inject constructor(
} else {
null
},
name = it.name ?: "",
name = it.username ?: it.name ?: "",
fullName = it.name,
readonly = false,
updatedAt = null,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment