aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mottovote/index.js2
-rw-r--r--mottovote/public/script.js5
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