webitel-sdk 0.1.190 → 0.1.191
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.
- package/bundles/index.esm.js +1 -1
- package/bundles/index.esm.js.map +1 -1
- package/bundles/index.esm.min.js +1 -1
- package/bundles/index.esm.min.js.map +1 -1
- package/bundles/index.umd.js +1 -1
- package/bundles/index.umd.js.map +1 -1
- package/bundles/index.umd.min.js +1 -1
- package/bundles/index.umd.min.js.map +1 -1
- package/esm2015/socket/client.js +1 -1
- package/esm2015/socket/client.js.map +1 -1
- package/esm5/socket/client.js +1 -1
- package/esm5/socket/client.js.map +1 -1
- package/package.json +1 -1
package/bundles/index.esm.js
CHANGED
|
@@ -35719,7 +35719,7 @@ class Client extends EventEmitter {
|
|
|
35719
35719
|
}
|
|
35720
35720
|
callBySession(session) {
|
|
35721
35721
|
for (const call of this.allCall()) {
|
|
35722
|
-
if (call.sip === session) {
|
|
35722
|
+
if (call.sip && call.sip.id === session.id) {
|
|
35723
35723
|
return call;
|
|
35724
35724
|
}
|
|
35725
35725
|
}
|