Make sure users with wrong tokens are locked out instead of crashing the app

This commit is contained in:
Jérémie Astori 2016-08-18 00:02:40 -04:00
parent 36a21bacac
commit 40b8f0c293

View file

@ -286,10 +286,10 @@ function auth(data) {
}
} else {
client = manager.findClient(data.user, data.token);
var signedIn = data.token && data.token === client.config.token;
var signedIn = data.token && client && data.token === client.config.token;
var token;
if (data.remember || data.token) {
if (client && (data.remember || data.token)) {
token = client.config.token;
}