2
1
mirror of https://github.com/Thream/socketio-jwt.git synced 2024-07-21 09:38:31 +02:00

emit error on store-error

this could've saved me some work.
next time i'll better check if redis is online.
This commit is contained in:
Screeny 2013-12-03 15:20:14 +01:00
parent c5303a3d7a
commit 95fb0fba7c

View File

@ -45,7 +45,7 @@ function authorize(options) {
auth.store.get(data.sessionID, function(err, session){
if(err)
return auth.fail(data, 'Error in session store.', true, accept);
return auth.fail(data, 'Error in session store:\n' + err.message, true, accept);
if(!session)
return auth.fail(data, 'No session found', false, accept);
if(!session[auth.passport._key])