defold / extension-push

This is a Defold native extension which provides access to Push Notifications functionality on iOs and Android devices.
https://www.defold.com/extension-push/
MIT License
20 stars 16 forks source link

Do not convert the entire NSDictionary to json #44

Closed britzl closed 2 years ago

britzl commented 2 years ago

The received userinfo contains both the notification id and the payload string. On iOS we incorrectly converted this to JSON and returned it to the listen, when we in fact should only return the payload (which is already in JSON format).

Fixes #43