mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2025-02-25 19:00:45 +01:00
Merge branch 'soru/fix-join' into 'main'
fix: missing null check See merge request famedly/fluffychat!473
This commit is contained in:
commit
3248301f0f
@ -74,7 +74,7 @@ class SearchController extends State<Search> {
|
|||||||
future: () => _joinRoomAndWait(
|
future: () => _joinRoomAndWait(
|
||||||
context,
|
context,
|
||||||
room.roomId,
|
room.roomId,
|
||||||
room.canonicalAlias ?? room.aliases.first,
|
room.canonicalAlias ?? room.aliases?.first,
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
if (success.error == null) {
|
if (success.error == null) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user