From 23334817e85faea27234aba1c4c0ab75889c62e5 Mon Sep 17 00:00:00 2001 From: Lars Krönner Date: Mon, 25 Jan 2021 01:01:51 +0100 Subject: Making marvin happy again --- questions/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'questions/index.js') 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({}); } -- cgit v1.2.3