aboutsummaryrefslogtreecommitdiff
path: root/quotes/index.js
diff options
context:
space:
mode:
authorMarvin Borner2020-10-02 21:12:23 +0200
committerMarvin Borner2020-10-02 21:12:23 +0200
commite52bcb760f36b68495692ac5c5a5b68e8dafc33b (patch)
tree9e386b6081a0516d2c475e187f0b744d65aae156 /quotes/index.js
parent762794cecdb0b12b58db0de16d31c8d7c216171c (diff)
Added polls
Diffstat (limited to 'quotes/index.js')
-rw-r--r--quotes/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/quotes/index.js b/quotes/index.js
index ad9fa97..c0014c6 100644
--- a/quotes/index.js
+++ b/quotes/index.js
@@ -9,7 +9,7 @@ app.post("/api/add", checkUser, async (req, res) => {
if (!req.body.author || !req.body.quote) return res.send("error");
try {
await db.query("INSERT INTO quotes (user_id, author_id, quote) VALUE (?,?,?)", [
- req.session.uid, // TODO: Add actual user identification
+ req.session.uid,
parseInt(req.body.author),
req.body.quote,
]);