@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.
Files changed (2) hide show
  1. package/lib/call.js +5 -1
  2. 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
- { ...newcall.options, ...{ localSdp: newcall.sdp.local?newcall.sdp.local.toString():"" } }, {
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@babblevoice/babble-drachtio-callmanager",
3
- "version": "3.3.1",
3
+ "version": "3.3.2",
4
4
  "description": "Call processing to create a PBX",
5
5
  "main": "index.js",
6
6
  "scripts": {