aboutsummaryrefslogtreecommitdiff
path: root/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'app.js')
-rw-r--r--app.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/app.js b/app.js
index 2231936..e2b7410 100644
--- a/app.js
+++ b/app.js
@@ -45,6 +45,7 @@ app.use("/prediction", checkUser, prediction);
app.use("/secrets", checkUser, secrets);
app.use("/admin", checkAdmin, admin); // Lel
app.use("/auth", auth);
+app.get("*", (req, res) => res.redirect("/"));
app.get("/images", checkUser, async (req, res) => {
const links = (await fs.readFile(__dirname + "/images.txt", "utf8")).split("\n");