CatalystCode / react-native-azurenotificationhub

React Native module to support Azure Notification Hub push notifications on Android, iOS, and Windows.
MIT License
47 stars 75 forks source link

Not able to receive badge as an integer in push payload and silent push notifications in IOS #195

Closed bhawnaNS1411 closed 3 years ago

bhawnaNS1411 commented 3 years ago

Payload sent from azure portal-- "aps" : { "alert":"TestNotification", "badge" : 21, "sound" :"" } Payload received (badge in string)in app-- { "alert":"TestNotification", "badge" : "21", "sound" :"" } No push received Badge count not updated------ Silent Push Payload "aps" : { "badge" : 21, "content-available" : 1 }

Unable to find solution for the same.