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
{{ message }}
This repository has been archived by the owner on Jun 26, 2022. It is now read-only.
When call is put on hold, provider(_ provider: CXProvider, didDeactivate audioSession: AVAudioSession) is called,
where you end and remove the call.
This means there is no call to go back to when call is put off hold.
If you supported hold state you would find audio issues with this flow.
TokBox won't fix their issue as long as they can't reproduce it on this sample app.
Please fix the sample app. Thank you
(Adding this code in provider(_ provider: CXProvider, didDeactivate audioSession: AVAudioSession) would let you see the errors: guard let call = outgoingCall, !call.isOnHold else { return })
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When call is put on hold,
provider(_ provider: CXProvider, didDeactivate audioSession: AVAudioSession)
is called,where you end and remove the call.
This means there is no call to go back to when call is put off hold.
If you supported hold state you would find audio issues with this flow.
TokBox won't fix their issue as long as they can't reproduce it on this sample app.
Please fix the sample app. Thank you
(Adding this code in
provider(_ provider: CXProvider, didDeactivate audioSession: AVAudioSession)
would let you see the errors:guard let call = outgoingCall, !call.isOnHold else { return })
The text was updated successfully, but these errors were encountered: