Skip to content

Commit 7f91b0d

Browse files
[Release][BugFix] Rooms CallJoin in iOS
2 parents 5c1ea25 + ea112b6 commit 7f91b0d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

demo/ios/RNAzureCommunicationUICalling.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,9 @@ class RNAzureCommunicationUICalling: RCTEventEmitter {
192192

193193
localOptions = LocalOptions(participantViewData: participantViewData, setupScreenViewData: setupViewData)
194194

195-
if let url = URL(string: meetingInput),
195+
if isRoomsCall(meetingInput: meetingInput) {
196+
callComposite.launch(locator: .roomCall(roomId: meetingInput), localOptions: localOptions)
197+
} else if let url = URL(string: meetingInput),
196198
UIApplication.shared.canOpenURL(url as URL) {
197199
callComposite.launch(locator: .teamsMeeting(teamsLink: meetingInput), localOptions: localOptions)
198200
} else if let uuid = UUID(uuidString: meetingInput) {

0 commit comments

Comments
 (0)