mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-02-04 04:19:35 +00:00
fix local conference crash when pausing/resuming
This commit is contained in:
parent
b902216921
commit
445162792b
1 changed files with 2 additions and 2 deletions
|
|
@ -94,7 +94,7 @@
|
|||
break;
|
||||
}
|
||||
case UIPauseButtonType_Conference: {
|
||||
linphone_core_leave_conference(CallManager.instance.getConference);
|
||||
linphone_conference_leave(CallManager.instance.getConference);
|
||||
// Fake event
|
||||
[NSNotificationCenter.defaultCenter postNotificationName:kLinphoneCallUpdate object:self];
|
||||
break;
|
||||
|
|
@ -131,7 +131,7 @@
|
|||
break;
|
||||
}
|
||||
case UIPauseButtonType_Conference: {
|
||||
linphone_core_enter_conference(CallManager.instance.getConference);
|
||||
linphone_conference_enter(CallManager.instance.getConference);
|
||||
// Fake event
|
||||
[NSNotificationCenter.defaultCenter postNotificationName:kLinphoneCallUpdate object:self];
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue