Added missing await

This commit is contained in:
Alex Holliday
2024-07-03 23:19:12 -07:00
parent 5d24f3136c
commit fc6691e148

View File

@@ -215,9 +215,9 @@ const editMonitor = async (req, res, next) => {
try {
const editedMonitor = await req.db.editMonitor(req, res);
// Delete the old job(editedMonitor has the same ID as the old monitor)
req.jobQueue.deleteJob(editedMonitor);
await req.jobQueue.deleteJob(editedMonitor);
// Add the new job back to the queue
req.jobQueue.addJob(editedMonitor._id, editedMonitor);
await req.jobQueue.addJob(editedMonitor._id, editedMonitor);
return res.status(200).json({
success: true,
msg: successMessages.MONITOR_EDIT,