aboutsummaryrefslogtreecommitdiff
path: root/auth
diff options
context:
space:
mode:
authorMarvin Borner2020-10-11 14:43:46 +0200
committerMarvin Borner2020-10-11 14:43:46 +0200
commita30196605b582d7ea2cd3309c293dcaa740b29cc (patch)
tree481fe798303ef83ae76712dac067a34c21b77160 /auth
parent1ce92e4d07b67db01c8851073f8ace2bae6ff3cd (diff)
Fixed unhandled promise rejection (ig)
Diffstat (limited to 'auth')
-rw-r--r--auth/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/auth/index.js b/auth/index.js
index 3ef330d..45b26f3 100644
--- a/auth/index.js
+++ b/auth/index.js
@@ -10,7 +10,7 @@ function checkUser(req, res, next) {
}
function checkAdmin(req, res, next) {
- if (!req.session.loggedIn) res.redirect("/auth");
+ if (!req.session.loggedIn) return res.redirect("/auth");
try {
db.query("SELECT is_admin FROM users WHERE id = ?", [req.session.uid]).then((ret) => {