mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-17 15:09:31 +02:00
Merge pull request #7584 from toshanmugaraj/Audio-call-crash
crash for audio call , updated protocol signature for jmcallkitlistener
This commit is contained in:
@@ -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
changelog.d/7529.bugfix
Normal file
1
changelog.d/7529.bugfix
Normal file
@@ -0,0 +1 @@
|
||||
App crashes when we make audio and video calls
|
||||
Reference in New Issue
Block a user