fix bug in prev checkin

This commit is contained in:
Dave Horton
2022-04-03 19:15:00 -04:00
parent 775a317821
commit 8459376f88

View File

@@ -13,7 +13,7 @@ const dbUtils = require('../../utils/db-utils');
router.post('/', async(req, res) => { router.post('/', async(req, res) => {
const {logger} = req.app.locals; const {logger} = req.app.locals;
const {accountSid} = req.body; const accountSid = req.body.account_sid;
logger.debug({body: req.body}, 'got createCall request'); logger.debug({body: req.body}, 'got createCall request');
try { try {