We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5c388a3 + 30d41b1 commit 959fc82Copy full SHA for 959fc82
articles/communication-services/quickstarts/voice-video-calling/includes/get-started-ios.md
@@ -160,8 +160,8 @@ func startCall()
160
AVAudioSession.sharedInstance().requestRecordPermission { (granted) in
161
if granted {
162
// start call logic
163
- let callees:[CommunicationIdentifier] = [CommunicationUserIdentifier(identifier: self.callee)]
164
- self.call = self.callAgent?.startCall(participants: callees, options: StartCallOptions()) { (call, error) in
+ let callees:[CommunicationIdentifier] = [CommunicationUserIdentifier(self.callee)]
+ self.callAgent?.startCall(participants: callees, options: StartCallOptions()) { (call, error) in
165
if (error == nil) {
166
self.call = call
167
} else {
0 commit comments