Fix chat list
This commit is contained in:
parent
dbf472665a
commit
71053ff4d2
|
@ -6,8 +6,8 @@ class RoomNameCalculator {
|
|||
const RoomNameCalculator(this.room);
|
||||
|
||||
String get name {
|
||||
if (room.name.isEmpty &&
|
||||
room.canonicalAlias.isEmpty &&
|
||||
if ((room.name?.isEmpty ?? true) &&
|
||||
(room.canonicalAlias?.isEmpty ?? true) &&
|
||||
!room.isDirectChat) {
|
||||
return "Group with ${room.displayname}";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue