diff --git a/app/utils/push_notifications.js b/app/utils/push_notifications.js index 6249c7509..d590e9d97 100644 --- a/app/utils/push_notifications.js +++ b/app/utils/push_notifications.js @@ -87,7 +87,9 @@ const onPushNotification = async (deviceNotification) => { } else if (userInteraction && !notification.localNotification) { EventEmitter.emit('close_channel_drawer'); if (getState().views.root.hydrationComplete) { - loadFromNotification(notification); + setTimeout(() => { + loadFromNotification(notification); + }, 0); } else { const waitForHydration = () => { if (getState().views.root.hydrationComplete && !stopLoadingNotification) {