edoctor-sendbird-calls 1.0.1-beta.6 → 1.0.1-beta.7
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.
|
@@ -130,7 +130,7 @@ class RNSendBirdCalls: RCTEventEmitter, SendBirdCallDelegate, DirectCallDelegate
|
|
|
130
130
|
return
|
|
131
131
|
}
|
|
132
132
|
|
|
133
|
-
print(self.TAG + "AUTHENTICATE SUCCESS
|
|
133
|
+
print(self.TAG + "AUTHENTICATE SUCCESS \(user.userId)")
|
|
134
134
|
|
|
135
135
|
resolve(["succeeded": true ,"userId": user.userId, "nickname": user.nickname ?? ""])
|
|
136
136
|
}
|
|
@@ -536,6 +536,7 @@ class RNSendBirdCalls: RCTEventEmitter, SendBirdCallDelegate, DirectCallDelegate
|
|
|
536
536
|
print(TAG + "didEnd")
|
|
537
537
|
CALL_ACTIVE = nil
|
|
538
538
|
let params = getParamFromDirectCall(call: directCall)
|
|
539
|
+
print(self.TAG + "didEnd directCall: \(stringifyDirectCall(directCall))")
|
|
539
540
|
print(self.TAG + "didEnd params: \(params)")
|
|
540
541
|
sendEventWithName(eventName: RNSendBirdCalls.onEnded, params: params)
|
|
541
542
|
CXCallManager.shared.endCall(for: callId, endedAt: Date(), reason: directCall.endResult)
|