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 5c1ea25 + ea112b6 commit 7f91b0dCopy full SHA for 7f91b0d
demo/ios/RNAzureCommunicationUICalling.swift
@@ -192,7 +192,9 @@ class RNAzureCommunicationUICalling: RCTEventEmitter {
192
193
localOptions = LocalOptions(participantViewData: participantViewData, setupScreenViewData: setupViewData)
194
195
- if let url = URL(string: meetingInput),
+ if isRoomsCall(meetingInput: meetingInput) {
196
+ callComposite.launch(locator: .roomCall(roomId: meetingInput), localOptions: localOptions)
197
+ } else if let url = URL(string: meetingInput),
198
UIApplication.shared.canOpenURL(url as URL) {
199
callComposite.launch(locator: .teamsMeeting(teamsLink: meetingInput), localOptions: localOptions)
200
} else if let uuid = UUID(uuidString: meetingInput) {
0 commit comments