fix: Open deep links

This commit is contained in:
Christian Kußowski 2026-03-09 17:42:54 +01:00
commit 1e763f05f5
No known key found for this signature in database
GPG key ID: E067ECD60F1A0652
11 changed files with 37 additions and 72 deletions

View file

@ -170,8 +170,14 @@ abstract class AppRoutes {
),
GoRoute(
path: 'newprivatechat',
pageBuilder: (context, state) =>
defaultPageBuilder(context, state, const NewPrivateChat()),
pageBuilder: (context, state) => defaultPageBuilder(
context,
state,
NewPrivateChat(
key: ValueKey('new_chat_${state.uri.query}'),
deeplink: state.uri.queryParameters['deeplink'],
),
),
redirect: loggedOutRedirect,
),
GoRoute(