diff options
author | Lars Krönner | 2021-01-25 01:01:51 +0100 |
---|---|---|
committer | Lars Krönner | 2021-01-25 01:01:51 +0100 |
commit | 23334817e85faea27234aba1c4c0ab75889c62e5 (patch) | |
tree | ffc0c6bfb552c8c882811e16bbddb4c6393b3e78 /questions/index.js | |
parent | 1846da9edaba43d8eeeab8bf417428464a117a36 (diff) |
Making marvin happy again
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({}); } |