From 5273769235456e69f6dbde60a63a5a9a7f2ee345 Mon Sep 17 00:00:00 2001 From: LarsVomMars Date: Wed, 30 Sep 2020 20:38:42 +0200 Subject: Whoopsie --- motto/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'motto') 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); -- cgit v1.2.3