Hi guys!
Our team is having an issue where the chat screen does not load correctly after tapping on a push notification, curiously, it is working fine when the chat is presented after the user taps on a button.
IOS ZendeskSDKMessaging: 2.17.0
The SDK initialization is this:
let zendeskKey = ...
Zendesk.initialize(withChannelKey: zendeskKey, messagingFactory: DefaultMessagingFactory(), completionHandler: processResult)
This is the code that handles the Zendesk push notifications:
PushNotifications.handleTap(userInfo) { viewController in }
We have tried to use the viewController passed in on this completionHandler, and the the view controller returned by this API: Zendesk.instance?.messaging?.messagingViewController(), but none of these approaches have worked real
A few days ago the redirection was working fine, but since today it is just not loading, and we are not sure about what we could be doing wrong.
Thanks in advance!