From 7c94acdb92aed1472cad01d6cabe7de7ede0f7f8 Mon Sep 17 00:00:00 2001 From: Krille-chan <24619905+krille-chan@users.noreply.github.com> Date: Mon, 2 Oct 2023 09:54:24 +0200 Subject: [PATCH] fix: open story from push notification --- lib/utils/background_push.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/background_push.dart b/lib/utils/background_push.dart index afd08b7ef..88ecdb79e 100644 --- a/lib/utils/background_push.dart +++ b/lib/utils/background_push.dart @@ -322,7 +322,7 @@ class BackgroundPush { ?.content .tryGet('type') == ClientStoriesExtension.storiesRoomType; - FluffyChatApp.router.go('/${isStory ? 'stories' : 'rooms'}/$roomId'); + FluffyChatApp.router.go('/${isStory ? 'rooms/stories' : 'rooms'}/$roomId'); } catch (e, s) { Logs().e('[Push] Failed to open room', e, s); }