fix: Join public rooms

This commit is contained in:
krille-chan 2023-12-23 09:52:55 +01:00
parent a14f920a2b
commit 0651b5c1f1
No known key found for this signature in database

View file

@ -28,9 +28,8 @@ class PublicRoomBottomSheet extends StatelessWidget {
} }
void _joinRoom(BuildContext context) async { void _joinRoom(BuildContext context) async {
final client = Matrix.of(context).client; final client = Matrix.of(outerContext).client;
final chunk = this.chunk; final chunk = this.chunk;
final navigator = Navigator.of(context);
final result = await showFutureLoadingDialog<String>( final result = await showFutureLoadingDialog<String>(
context: context, context: context,
future: () async { future: () async {
@ -50,10 +49,10 @@ class PublicRoomBottomSheet extends StatelessWidget {
}, },
); );
if (result.error == null) { if (result.error == null) {
navigator.pop(); Navigator.of(context).pop();
// don't open the room if the joined room is a space // don't open the room if the joined room is a space
if (!client.getRoomById(result.result!)!.isSpace) { if (!client.getRoomById(result.result!)!.isSpace) {
context.go('/rooms/${result.result!}'); outerContext.go('/rooms/${result.result!}');
} }
return; return;
} }