@qusaieilouti99/call-manager 0.1.152 → 0.1.154
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -238,7 +238,7 @@ object CallEngine {
|
|
|
238
238
|
metadata?.let { callMetadata[callId] = it }
|
|
239
239
|
|
|
240
240
|
val incomingCall = activeCalls.values.find { it.state == CallState.INCOMING }
|
|
241
|
-
if (incomingCall != null
|
|
241
|
+
if (incomingCall != null) {
|
|
242
242
|
Log.d(TAG, "Incoming call collision detected. Auto-rejecting new call: $callId")
|
|
243
243
|
rejectIncomingCallCollision(callId, "Another call is already incoming")
|
|
244
244
|
return
|
package/ios/CallManager.swift
CHANGED