@tiledesk/tiledesk-voice-twilio-connector 0.1.26-rc7 → 0.1.26-rc8
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/index.js +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -227,7 +227,7 @@ router.post('/webhook/:id_project', async (req, res) => {
|
|
|
227
227
|
|
|
228
228
|
//await for a response message from tiledesk queue
|
|
229
229
|
let start_time_get_message = new Date()
|
|
230
|
-
let message = await getMessage(callSid,
|
|
230
|
+
let message = await getMessage(callSid, from, project_id, conversation_id)
|
|
231
231
|
let end_time_get_message = new Date()
|
|
232
232
|
winston.verbose('Time to getMessage from queue in /:project_id/start : ' + end_time_get_message-start_time_get_message + '[ms] --- at time:' + new Date())
|
|
233
233
|
|