Fix emoji in new RoomList

This commit is contained in:
Nicolas Werner 2021-05-22 10:16:42 +02:00
parent beeb60e4a1
commit f3d956aebc
No known key found for this signature in database
GPG key ID: C8D75E610773F2D9
6 changed files with 17 additions and 2 deletions

View file

@ -62,7 +62,7 @@ RoomlistModel::data(const QModelIndex &index, int role) const
case Roles::AvatarUrl:
return room->roomAvatarUrl();
case Roles::RoomName:
return room->roomName();
return room->plainRoomName();
case Roles::RoomId:
return room->roomId();
case Roles::LastMessage: