Merge branch 'room-fix-nullcheck' into 'master'
[Room] Null check if room name is null See merge request famedly/famedlysdk!111
This commit is contained in:
commit
72c3cafdd8
|
@ -87,7 +87,7 @@ class Room {
|
||||||
/// The name of the room if set by a participant.
|
/// The name of the room if set by a participant.
|
||||||
String get name {
|
String get name {
|
||||||
if (states["m.room.name"] != null &&
|
if (states["m.room.name"] != null &&
|
||||||
!states["m.room.name"].content["name"].isEmpty)
|
!(states["m.room.name"].content["name"]?.isEmpty ?? true))
|
||||||
return states["m.room.name"].content["name"];
|
return states["m.room.name"].content["name"];
|
||||||
if (canonicalAlias != null && !canonicalAlias.isEmpty)
|
if (canonicalAlias != null && !canonicalAlias.isEmpty)
|
||||||
return canonicalAlias.substring(1, canonicalAlias.length).split(":")[0];
|
return canonicalAlias.substring(1, canonicalAlias.length).split(":")[0];
|
||||||
|
|
Loading…
Reference in a new issue