fix: Open deep link on android

This commit is contained in:
Christian Kußowski 2026-03-30 10:22:15 +02:00
commit 383d708500
No known key found for this signature in database
GPG key ID: E067ECD60F1A0652
3 changed files with 6 additions and 8 deletions

View file

@ -43,7 +43,7 @@ class FluffyChatApp extends StatelessWidget {
// Pass deep links to app:
if (state.uri.toString().startsWith(AppConfig.deepLinkPrefix)) {
return '/rooms/newprivatechat?deeplink=${state.uri}';
return '/rooms/newprivatechat#${state.uri}';
}
return null;
},