fix possible race condition

This commit is contained in:
LouisLam 2021-08-10 21:37:51 +08:00
parent b413427a37
commit 70e7945a66

View File

@ -589,7 +589,7 @@ let indexHTML = fs.readFileSync("./dist/index.html").toString();
})();
async function updateMonitorNotification(monitorID, notificationIDList) {
R.exec("DELETE FROM monitor_notification WHERE monitor_id = ? ", [
await R.exec("DELETE FROM monitor_notification WHERE monitor_id = ? ", [
monitorID,
])