You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looks like onincoming isn't working with the 2.9 changes - I haven't tried it with the original code (with the 1.5 version), so I'm thinking that something internal to how Cordova handles returning messages to Javascript has changed.
My client code works with the Twilio Client javascript, so I can at least use that for testing.
The text was updated successfully, but these errors were encountered:
I had an issue with incoming calls using the latest version of the plugin where the call was being received but unable to be answered using "connection.accept();" in JavaScript.
I resolved this modifying the "TCPlugin.m" file on method "didReceiveIncomingConnection". Problem was that the received connection was not being stored. I added "self.connection = connection;" before invoking the JavaScript callback. After this, I started having calls hearing voice from both sides.
Looks like onincoming isn't working with the 2.9 changes - I haven't tried it with the original code (with the 1.5 version), so I'm thinking that something internal to how Cordova handles returning messages to Javascript has changed.
My client code works with the Twilio Client javascript, so I can at least use that for testing.
The text was updated successfully, but these errors were encountered: