fix: missing null check
This commit is contained in:
parent
5428d5b1c7
commit
f73aeca78c
1 changed files with 1 additions and 1 deletions
|
|
@ -74,7 +74,7 @@ class SearchController extends State<Search> {
|
|||
future: () => _joinRoomAndWait(
|
||||
context,
|
||||
room.roomId,
|
||||
room.canonicalAlias ?? room.aliases.first,
|
||||
room.canonicalAlias ?? room.aliases?.first,
|
||||
),
|
||||
);
|
||||
if (success.error == null) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue