aboutsummaryrefslogtreecommitdiff
path: root/questions/index.js
diff options
context:
space:
mode:
authorLars Krönner2021-01-25 01:01:51 +0100
committerLars Krönner2021-01-25 01:01:51 +0100
commit23334817e85faea27234aba1c4c0ab75889c62e5 (patch)
treeffc0c6bfb552c8c882811e16bbddb4c6393b3e78 /questions/index.js
parent1846da9edaba43d8eeeab8bf417428464a117a36 (diff)
Making marvin happy again
Diffstat (limited to 'questions/index.js')
-rw-r--r--questions/index.js2
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({});
}