mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-05-07 00:17:43 +02:00
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) {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
App crashes when we make audio and video calls
|
||||
Reference in New Issue
Block a user