fix: Open room links with event id

This commit is contained in:
krille-chan 2024-02-05 09:05:31 +01:00
parent 2e67695645
commit ecaac9eec2
No known key found for this signature in database

View file

@ -169,10 +169,10 @@ class UrlLauncher {
// we have the room, so....just open it
if (event != null) {
context.go(
Uri(
'/${Uri(
pathSegments: ['rooms', room.id],
queryParameters: {'event': event},
).toString(),
)}',
);
} else {
context.go('/rooms/${room.id}');