You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 7, 2026. It is now read-only.
I have a chat app that receives notifications from FCM push notification. If 3 users send messages to me, I will have 3 push notifications. What I want to when I open a conversation is to get all the notifications I received with the getDisplayedNotifications() function and filter them based on FCM push notification's custom data field called event (id of the conversation). I can access that field from PNs custom data in IOS at this path: notification.data.event on the iOS device, but on the Android I can't. data field is missing from the Notification object
This is what getDisplayedNotifications returns on IOS:
and this is what getDisplayedNotifications returns on Android:
ignore the length of the array.
Do you have any solutions to this issue? (the display is handled by default, not Notifee)
I have a chat app that receives notifications from FCM push notification. If 3 users send messages to me, I will have 3 push notifications. What I want to when I open a conversation is to get all the notifications I received with the
getDisplayedNotifications()function and filter them based on FCM push notification's custom data field called event (id of the conversation). I can access that field from PNs custom data in IOS at this path:notification.data.eventon the iOS device, but on the Android I can't.datafield is missing from theNotificationobjectThis is what
getDisplayedNotificationsreturns on IOS:and this is what
getDisplayedNotificationsreturns on Android:ignore the length of the array.
Do you have any solutions to this issue? (the display is handled by default, not Notifee)