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 Dec 6, 2023. It is now read-only.
in my app one to one call working fine. but when i have to try make a conference call i am getting some problem... when i try to add another person on running call it is not working to make bridge the between them.
i have used this codes. please look at the code and help me out.
in my app one to one call working fine. but when i have to try make a conference call i am getting some problem... when i try to add another person on running call it is not working to make bridge the between them.
i have used this codes. please look at the code and help me out.
func conferenceButtonAction(_ sender: Any) {
self.callManager.startCall(toNumber: number, for: account! ) { (call, error) in
if error != nil {
DDLogWrapper.logError("Could not start call")
self.callButton.isEnabled = true
} else {
self.call = call
self.callManager.add(self.call!)
self.callManager.calls(for: account)
DispatchQueue.main.async {
//self.performSegue(withIdentifier: "toCall", sender: self)
self.navigationController?.popViewController(animated: false)
}
}
}
}
The text was updated successfully, but these errors were encountered: