Remove extra space around userId

This commit is contained in:
Benoit Marty 2019-07-17 15:13:12 +02:00
parent 844f6d16a4
commit 32b79bd50e
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ internal class RoomDisplayNameResolver @Inject constructor(private val context:
return if (isUnique) {
roomMember.displayName
} else {
"${roomMember.displayName} ( ${eventEntity.stateKey} )"
"${roomMember.displayName} (${eventEntity.stateKey})"
}
}