diff options
author | Marvin Borner | 2020-10-11 14:43:46 +0200 |
---|---|---|
committer | Marvin Borner | 2020-10-11 14:43:46 +0200 |
commit | a30196605b582d7ea2cd3309c293dcaa740b29cc (patch) | |
tree | 481fe798303ef83ae76712dac067a34c21b77160 /auth | |
parent | 1ce92e4d07b67db01c8851073f8ace2bae6ff3cd (diff) |
Fixed unhandled promise rejection (ig)
Diffstat (limited to 'auth')
-rw-r--r-- | auth/index.js | 2 |
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) => { |