From c571312917d695be40882aaba622f3f960ca6457 Mon Sep 17 00:00:00 2001 From: me Date: Sat, 15 Mar 2025 12:15:10 +0200 Subject: [PATCH] probably a fix --- backend/src/api.mjs | 5 +---- backend/src/db.mjs | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/backend/src/api.mjs b/backend/src/api.mjs index 230f90b..cb7ca3d 100644 --- a/backend/src/api.mjs +++ b/backend/src/api.mjs @@ -28,7 +28,6 @@ router.post('/:site/*', utils.limiter(20), (req, res) => { message: utils.escapeHtml(req.body.message), reply_to: req.body.reply_to || null, }; - console.log(comment); // validation const user_token = req.body.token; @@ -43,9 +42,7 @@ router.post('/:site/*', utils.limiter(20), (req, res) => { } else if (comment.message > site.max_lengths.message) { res.status(400).json("הודעה ארוכה מדי."); } else { - const comment = db.insertPageComment(site_url, path, comment); - - res.json(comment); + res.json(db.insertPageComment(site_url, path, comment)); } }); diff --git a/backend/src/db.mjs b/backend/src/db.mjs index 2394ffa..6ad1bfd 100644 --- a/backend/src/db.mjs +++ b/backend/src/db.mjs @@ -20,7 +20,7 @@ export class DB { return getPageComments(this.my_db, site_url, page); } insertPageComment(site_url, path, comment) { - insertPageComment(this.my_db, site_url, path, comment); + return insertPageComment(this.my_db, site_url, path, comment); } }