refactor: Migrate from pathsegment routing

This commit is contained in:
Krille 2023-08-13 16:07:15 +02:00
commit b715eff839
No known key found for this signature in database
15 changed files with 20 additions and 23 deletions

View file

@ -196,9 +196,9 @@ class ChatSettingsPopupMenuState extends State<ChatSettingsPopupMenu> {
void _showChatDetails() {
if (GoRouterState.of(context).uri.path.endsWith('/details')) {
context.go(['', 'rooms', widget.room.id].join('/'));
context.go('/rooms/${widget.room.id}');
} else {
context.go(['', 'rooms', widget.room.id, 'details'].join('/'));
context.go('/rooms/${widget.room.id}/details');
}
}
}