diff options
author | LarsVomMars | 2020-10-03 12:19:18 +0200 |
---|---|---|
committer | LarsVomMars | 2020-10-03 12:19:18 +0200 |
commit | e5a757786f632ef15aae7f4010e120d5479b869b (patch) | |
tree | 97be52bbd30f18b1baa9ab2e0977c9185897af5b | |
parent | 30dd80aa4e7310c3f7958f2db261233583ded909 (diff) |
Fixes
-rw-r--r-- | mottovote/index.js | 2 | ||||
-rw-r--r-- | mottovote/public/script.js | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/mottovote/index.js b/mottovote/index.js index d22ba29..df1f6a4 100644 --- a/mottovote/index.js +++ b/mottovote/index.js @@ -20,7 +20,7 @@ app.get("/api/list", checkUser, async (req, res) => { app.put("/api/vote", checkUser, async (req, res) => { await db.query("DELETE FROM motto_votes WHERE user_id = ?", [req.session.uid]); try { - if (req.body.entries().length > 3) return res.send("error"); + if (Object.keys(req.body).length > 3) return res.send("error"); for (const mid in req.body) { await db.query( "INSERT INTO motto_votes (user_id, motto_id, votes) VALUES (?, ?, ?)", diff --git a/mottovote/public/script.js b/mottovote/public/script.js index c8432c5..05ca940 100644 --- a/mottovote/public/script.js +++ b/mottovote/public/script.js @@ -46,7 +46,8 @@ function addListeners() { headers: { "Content-Type": "application/json" }, body: JSON.stringify(req), }); - console.log(await resp.text()); - + const res = await resp.text(); + if (res === "ok") location.reload(); + else alert(res); }); }
\ No newline at end of file |