summaryrefslogtreecommitdiff
path: root/lib/web
diff options
context:
space:
mode:
authorSheogorath2018-01-30 21:06:34 +0100
committerSheogorath2018-01-30 21:53:36 +0100
commiteddf8a3a33cde7d373775713cae9a431322b673d (patch)
tree43055b2a929a0136ebe4c47b126bb1a60f5c6285 /lib/web
parenta40dcdd22223ce541a5f7a956bcc23509281b7ee (diff)
Fix uncaught exception for non-existent user
Since we added user management it's possible to get non-existent users which can cause a crash of the Backend server. Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
Diffstat (limited to 'lib/web')
-rw-r--r--lib/web/auth/index.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/web/auth/index.js b/lib/web/auth/index.js
index db5ff11d..9ab62c25 100644
--- a/lib/web/auth/index.js
+++ b/lib/web/auth/index.js
@@ -21,6 +21,11 @@ passport.deserializeUser(function (id, done) {
id: id
}
}).then(function (user) {
+ // Don't die on non-existent user
+ if (user == null) {
+ return done(null, false, { message: 'Invalid UserID' })
+ }
+
logger.info('deserializeUser: ' + user.id)
return done(null, user)
}).catch(function (err) {