updated protocol signature for jmcallkitlistener

This commit is contained in:
Shunmugaraj
2023-06-07 12:07:12 +03:00
parent 8832215022
commit 660def73b9
2 changed files with 12 additions and 11 deletions
+11 -11
View File
@@ -834,7 +834,7 @@ extension CallPresenter: JMCallKitListener {
}
func performAnswerCall(UUID: UUID) {
func performAnswerCall(with UUID: UUID) {
guard let widget = jitsiCalls[UUID] else {
return
}
@@ -842,7 +842,7 @@ extension CallPresenter: JMCallKitListener {
displayJitsiCall(withWidget: widget)
}
func performEndCall(UUID: UUID) {
func performEndCall(with UUID: UUID) {
guard let widget = jitsiCalls[UUID] else {
return
}
@@ -857,7 +857,7 @@ extension CallPresenter: JMCallKitListener {
}
}
func performSetMutedCall(UUID: UUID, isMuted: Bool) {
func performSetMutedCall(with UUID: UUID, isMuted: Bool) {
guard let widget = jitsiCalls[UUID] else {
return
}
@@ -868,20 +868,20 @@ extension CallPresenter: JMCallKitListener {
}
}
func performStartCall(UUID: UUID, isVideo: Bool) {
func performStartCall(with UUID: UUID, isVideo: Bool) {
}
func providerDidActivateAudioSession(sessionInfo: AVAudioSession) {
func providerDidActivateAudioSession(with session: AVAudioSession) {
}
func providerDidDeactivateAudioSession(sessionInfo: AVAudioSession) {
func providerDidDeactivateAudioSession(with session: AVAudioSession) {
}
func providerTimedOutPerformingAction(action: CXAction) {
func providerTimedOutPerformingAction(with action: CXAction) {
}
}
+1
View File
@@ -0,0 +1 @@
App crashes when we make audio and video calls