Handling siprec caller and callee null (#308)

* NBR Support

* NBR Support

* NBR Support

* re-invite Ok sdp should be sendonly

* NBR Support

* sendrecv sdp correction

* Update siprec-utils.js

* Updated comments

* Siprec participants details added to hook

* Bugfix siprec

* Update call-info.js

* Handling siprec caller and callee null
This commit is contained in:
Vinod Dharashive
2023-04-10 22:24:26 +05:30
committed by GitHub
parent f22b236dfc
commit 5d50f68725

View File

@@ -40,13 +40,13 @@ class CallInfo {
this.participants = [ this.participants = [
{ {
participant: 'caller', participant: 'caller',
uriUser: caller.user, uriUser: caller?.user,
uriHost: caller.host uriHost: caller?.host
}, },
{ {
participant: 'callee', participant: 'callee',
uriUser: callee.user, uriUser: callee?.user,
uriHost: callee.host uriHost: callee?.host
} }
]; ];
} }