log error for session request if there

And only try to update the session if a body is present
This commit is contained in:
Matthew Taylor 2016-01-08 17:19:43 -05:00
parent f88984f254
commit 1382fc48f6

View file

@ -37,10 +37,14 @@ var translations = require('../locales/translations.json');
host: '', host: '',
uri: '/session/' uri: '/session/'
}, function (err, body) { }, function (err, body) {
if (body.banned) { if (err) return;
return window.location = body.redirectUrl;
} else { if (typeof body !== 'undefined') {
window.updateSession(body); if (body.banned) {
return window.location = body.redirectUrl;
} else {
window.updateSession(body);
}
} }
}); });
}; };