From 9b71a785aae5d0d20dd76d3e8343178f75ccde9b Mon Sep 17 00:00:00 2001 From: Diego Mello Date: Fri, 17 Jul 2020 14:39:59 -0300 Subject: [PATCH] [FIX] In-app notification tap when deep in the stack not redirecting to the room (#2302) --- app/containers/InAppNotification/NotifierComponent.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/containers/InAppNotification/NotifierComponent.js b/app/containers/InAppNotification/NotifierComponent.js index 084c2fc0c..9cab30a59 100644 --- a/app/containers/InAppNotification/NotifierComponent.js +++ b/app/containers/InAppNotification/NotifierComponent.js @@ -90,6 +90,8 @@ const NotifierComponent = React.memo(({ if (isMasterDetail) { Navigation.navigate('DrawerNavigator'); + } else { + Navigation.navigate('RoomsListView'); } goRoom({ item, isMasterDetail }); hideNotification();