fix: update notification error handling to include new update method and improve reminder deletion logic

This commit is contained in:
2026-05-03 19:26:51 +07:00
parent abbce10e32
commit acb084475d
5 changed files with 198 additions and 83 deletions

View File

@@ -57,7 +57,7 @@ async function query(text, params = []) {
// Ubah $1, $2 jadi @p1, @p2
const sqlText = text.replace(/\$(\d+)/g, (_, num) => `@p${num}`);
console.log(sqlText, params);
// console.log(sqlText, params);
return request.query(sqlText);
}