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