peter-iakovlev / Telegram

Telegram Messenger for iOS
3.21k stars 854 forks source link

Notification Can't Use UNNotificationServiceExtension(iOS 10 feature) #304

Open elonfans opened 5 years ago

elonfans commented 5 years ago

We are a third party client based on telegram server development. We need custom the notification UI base on UNNotificationServiceExtension(iOS 10 feature), but the remote notification the telegram server push to apns no contain "mutable-content":1, lead to can't use UNNotificationServiceExtension feature.

please add "mutable-content":1 in the notification like that:

{ "aps":{ "alert":"test", "badge":1, "sound":"default", "mutable-content":1 } }

thanks!