aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLarsVomMars2020-09-30 20:38:42 +0200
committerLarsVomMars2020-09-30 20:38:42 +0200
commit5273769235456e69f6dbde60a63a5a9a7f2ee345 (patch)
treeec59c31011dae7c8b38ba9e7bf2905eb011bc0ce
parentad024d82b42216f38f81e2b2f40a23c79e6c9e5c (diff)
Whoopsie
-rw-r--r--motto/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/motto/index.js b/motto/index.js
index 26d70bd..4b39960 100644
--- a/motto/index.js
+++ b/motto/index.js
@@ -39,7 +39,7 @@ app.use("/api/", apiLimiter);
app.get("/api/list", async (req, res) => {
try {
- const themes = await db.query("SELECT * FROM theme" /* WHERE hidden = FALSE ORDER BY votes DESC"*/);
+ const themes = await db.query("SELECT * FROM theme WHERE hidden = FALSE ORDER BY votes DESC");
res.json(themes);
} catch (e) {
console.error(e);