2
0
mirror of https://gitlab.com/famedly/fluffychat.git synced 2025-06-09 18:37:29 +02:00

Merge branch 'soru/fix-join' into 'main'

fix: missing null check

See merge request 
This commit is contained in:
Krille Fear 2021-08-06 10:17:41 +00:00
commit 3248301f0f

@ -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) {