Bludator
Bludator
I am not receiving `NotificationReceived` event when the notification is shown and the app is running (i.e. notification with high importance). I this intended behavior?
You are to quick for me 😅. I have created issue for it now
> Hi, i just tested the pre-release 4.0.20-pre and the `NotificationReceived `is now firing in android, but the system popup is not shown when app is in foreground and channel...
I would love to have something like OnBeforeReceived event where I could modify the data before it is handled by the plugin. Also, I can imagine some helper extension methods...
I think that simple: ``` .Where(c => !notificationChannelRequests.Any(newChannel => c == newChannel.ChannelId)) ``` would fix it. -> We need to filter out existing channels that will get updated.
Oh I missed that method. It makes much more sense like this. 👍 Then my only problem is with [this comment](https://github.com/thomasgalliker/Plugin.FirebasePushNotifications/blob/719c90ee30005368045178e08b565322b2c5707a/Plugin.FirebasePushNotifications/Platforms/Android/Channels/INotificationChannels.cs#L77) which is not true. I think, I was also...