mirror of https://github.com/status-im/codimd.git
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>
This commit is contained in:
parent
a40dcdd222
commit
eddf8a3a33
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue