diff --git a/Riot/Managers/Call/CallPresenter.swift b/Riot/Managers/Call/CallPresenter.swift index 721f13079..888cbfca7 100644 --- a/Riot/Managers/Call/CallPresenter.swift +++ b/Riot/Managers/Call/CallPresenter.swift @@ -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) { + } } diff --git a/changelog.d/7529.bugfix b/changelog.d/7529.bugfix new file mode 100644 index 000000000..2ac672a91 --- /dev/null +++ b/changelog.d/7529.bugfix @@ -0,0 +1 @@ +App crashes when we make audio and video calls