From c16a2662f222a6021bc02440765da8c1d184626d Mon Sep 17 00:00:00 2001 From: Dave Horton Date: Mon, 14 Feb 2022 09:14:13 -0500 Subject: [PATCH] bugfix: rest outdial issue caused by req.srf not properly set --- lib/http-routes/api/create-call.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/http-routes/api/create-call.js b/lib/http-routes/api/create-call.js index 47b757ed..60d7be36 100644 --- a/lib/http-routes/api/create-call.js +++ b/lib/http-routes/api/create-call.js @@ -122,6 +122,7 @@ router.post('/', async(req, res) => { res.status(500).send('Call Failure'); return; } + inviteReq.srf = srf; /* ok our outbound INVITE is in flight */ const tasks = [restDial];