chore: Follow up design changes

This commit is contained in:
krille-chan 2023-08-12 12:22:30 +02:00
commit 92337a8bbf
No known key found for this signature in database
3 changed files with 16 additions and 2 deletions

View file

@ -15,7 +15,19 @@ class InvitationSelectionView extends StatelessWidget {
@override
Widget build(BuildContext context) {
final room = Matrix.of(context).client.getRoomById(controller.roomId!)!;
final room =
Matrix.of(context).client.getRoomById(controller.widget.roomId);
if (room == null) {
return Scaffold(
appBar: AppBar(
title: Text(L10n.of(context)!.oopsSomethingWentWrong),
),
body: Center(
child: Text(L10n.of(context)!.youAreNoLongerParticipatingInThisChat),
),
);
}
final groupName = room.name.isEmpty ? L10n.of(context)!.group : room.name;
return Scaffold(
appBar: AppBar(