Merge pull request #570 from thelounge/astorije/569-fix-auth

Make sure users with wrong tokens are locked out instead of crashing the app
This commit is contained in:
Pavel Djundik 2016-08-21 16:13:10 +03:00 committed by GitHub
commit eabc808565
1 changed files with 2 additions and 2 deletions

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;
}