diff options
Diffstat (limited to 'poll/index.js')
-rw-r--r-- | poll/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poll/index.js b/poll/index.js index 4fb1eab..ca4b573 100644 --- a/poll/index.js +++ b/poll/index.js @@ -25,7 +25,7 @@ app.get("/api/question/:id", checkUser, async (req, res) => { [question.id, req.session.uid], ); question.answer = answers.length > 0 ? answers[0].answer_id : undefined; - res.json(question); // 😜 + res.json(question); } else { res.json({}); } |