Do not allow update of conference call

Allow hanging up individual members of conference call
This commit is contained in:
Juha Heinanen
2026-04-06 14:59:48 +03:00
parent bca39aa1b0
commit 45497e8868
2 changed files with 20 additions and 4 deletions
@@ -886,6 +886,10 @@ class BaresipService: Service() {
return
}
"call update" -> {
if (call!!.conferenceCall) {
Log.d(TAG, "Refusing to update conference call ${call.callp}")
return
}
val newHeldState = when (ev[1].toInt()) {Api.SDP_INACTIVE, Api.SDP_RECVONLY -> true
else -> false
}