mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-07 05:53:06 +00:00
Fix locallyPause view in conference
This commit is contained in:
parent
95449cc7c5
commit
706850f0b9
1 changed files with 2 additions and 2 deletions
|
|
@ -89,10 +89,10 @@ import linphonesw
|
|||
self.currentCallView!.isHidden = currentCallData == nil || ConferenceViewModel.shared.conferenceExists.value == true
|
||||
self.currentCallView!.callData = currentCallData != nil ? currentCallData! : nil
|
||||
currentCallData??.isRemotelyPaused.readCurrentAndObserve { remotelyPaused in
|
||||
self.callPausedByRemoteView?.isHidden = remotelyPaused != true
|
||||
self.callPausedByRemoteView?.isHidden = remotelyPaused != true || ConferenceViewModel.shared.conferenceExists.value == true
|
||||
}
|
||||
currentCallData??.isPaused.readCurrentAndObserve { locallyPaused in
|
||||
self.callPausedByLocalView?.isHidden = locallyPaused != true
|
||||
self.callPausedByLocalView?.isHidden = locallyPaused != true || ConferenceViewModel.shared.conferenceExists.value == true
|
||||
}
|
||||
if (currentCallData == nil) {
|
||||
self.callPausedByRemoteView?.isHidden = true
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue