mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-07 05:53:06 +00:00
Fix rejection of SIP calls while in GSM call.
Audio was messed up.
This commit is contained in:
parent
9fa4af5159
commit
ab036c5fe0
1 changed files with 6 additions and 0 deletions
|
|
@ -599,4 +599,10 @@ class LinphoneCoreImpl implements LinphoneCore {
|
|||
public boolean soundResourcesLocked() {
|
||||
return soundResourcesLocked(nativePtr);
|
||||
}
|
||||
|
||||
private native void setMaxCalls(long nativePtr, int max);
|
||||
@Override
|
||||
public void setMaxCalls(int max) {
|
||||
setMaxCalls(nativePtr, max);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue