aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);