mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-12-24 14:32:37 +01:00
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 New Issue
Block a user