diff --git a/lib/features/push_notification/presentation/listener/email_change_listener.dart b/lib/features/push_notification/presentation/listener/email_change_listener.dart index 4f81194df..c02c45d86 100644 --- a/lib/features/push_notification/presentation/listener/email_change_listener.dart +++ b/lib/features/push_notification/presentation/listener/email_change_listener.dart @@ -107,6 +107,10 @@ class EmailChangeListener extends ChangeListener { } } else if (action is PushNotificationAction) { _pushNotificationAction(action.newState, action.accountId, action.userName, action.session); + + if (FcmUtils.instance.isMobileAndroid) { + _getNewReceiveEmailFromNotificationAction(action.session, action.accountId, action.newState); + } } else if (action is StoreEmailStateToRefreshAction) { if (FcmUtils.instance.isMobileAndroid) { _handleRemoveNotificationWhenEmailMarkAsRead(action.newState, action.accountId, action.session);