diff options
Diffstat (limited to 'mottovote/index.js')
-rw-r--r-- | mottovote/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mottovote/index.js b/mottovote/index.js index c3dbb9b..73c1641 100644 --- a/mottovote/index.js +++ b/mottovote/index.js @@ -19,7 +19,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 (Object.keys(req.body).length > 3) return res.send("error"); + if (Object.keys(req.body).length > 1) return res.send("error"); for (const mid in req.body) { await db.query("INSERT INTO motto_votes (user_id, motto_id, votes) VALUES (?, ?, ?)", [ req.session.uid, |