mirror of
https://github.com/jambonz/jambonz-feature-server.git
synced 2025-12-20 16:50:39 +00:00
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:
@@ -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
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user