Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,6 @@ class AppDelegate:UIResponder,UIApplicationDelegate {
<segments>
<segment title="audio"/>
<segment title="video"/>
<segment title="group"/>
</segments>
<color key="tintColor" systemColor="systemBlueColor"/>
<connections>
Expand Down Expand Up @@ -449,11 +448,7 @@ class ViewController: UIViewController {
self.showCallToast(toast: "Please enter a valid username or group id")
return
}
if self.callType != .groupCall {
CallKitManager.shared.call(with: input, type: self.callType)
} else {
CallKitManager.shared.groupCall(groupId: input)
}
CallKitManager.shared.call(with: input, type: self.callType)
}
}

Expand Down