@babblevoice/babble-drachtio-callmanager 3.3.1 → 3.3.2
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/lib/call.js +5 -1
- package/package.json +1 -1
package/lib/call.js
CHANGED
|
@@ -3216,7 +3216,11 @@ class call {
|
|
|
3216
3216
|
try {
|
|
3217
3217
|
newdialog = await callmanager.options.srf.createUAC(
|
|
3218
3218
|
options.contact + newcall.options.contactparams,
|
|
3219
|
-
{
|
|
3219
|
+
{
|
|
3220
|
+
...newcall.options,
|
|
3221
|
+
...{ noAck: newcall.#noack },
|
|
3222
|
+
...{ localSdp: newcall.sdp.local?newcall.sdp.local.toString():""
|
|
3223
|
+
} }, {
|
|
3220
3224
|
|
|
3221
3225
|
cbRequest: ( err, req ) => {
|
|
3222
3226
|
|