aboutsummaryrefslogtreecommitdiff
path: root/poll
diff options
context:
space:
mode:
Diffstat (limited to 'poll')
-rw-r--r--poll/index.js2
-rw-r--r--poll/public/script.js2
2 files changed, 2 insertions, 2 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({});
}
diff --git a/poll/public/script.js b/poll/public/script.js
index 5ca8a98..18469c3 100644
--- a/poll/public/script.js
+++ b/poll/public/script.js
@@ -97,7 +97,7 @@ async function request() {
return resp.json();
}
-// I did this myself lel ๐Ÿคจ
+// I did this myself lel
Object.prototype.empty = function () {
return Object.keys(this).length === 0;
};