@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 && incomingCall.callId != callId) {
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
@@ -87,8 +87,8 @@ public class CallManager: HybridCallManagerSpec {
87
87
  CallEngine.shared.reportIncomingCall(
88
88
  callId: callId,
89
89
  callType: callType,
90
- targetName: targetName,
91
- nil,
90
+ displayName: targetName,
91
+ pictureUrl: nil,
92
92
  metadata: metadata
93
93
  )
94
94
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qusaieilouti99/call-manager",
3
- "version": "0.1.152",
3
+ "version": "0.1.154",
4
4
  "description": "Call manager",
5
5
  "main": "./lib/module/index.js",
6
6
  "types": "./lib/typescript/src/index.d.ts",