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

fix TypeError when authenticate is sent with null

This commit is contained in:
bartlomiej-korpus 2016-05-26 21:01:17 +02:00
parent 23b6242d2a
commit 64ed562d05

View File

@ -41,7 +41,7 @@ function noQsMethod(options) {
}
};
if(typeof data.token !== "string") {
if(!data || typeof data.token !== "string") {
return onError({message: 'invalid token datatype'}, 'invalid_token');
}