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

Merge pull request #58 from pieterjandesmedt/master

fix(lib/index.js) return auth.success
This commit is contained in:
José F. Romaniello 2015-10-13 13:57:05 -03:00
commit d90bd53397

View File

@ -144,7 +144,7 @@ function authorize(options, onConnection) {
data.decoded_token = decoded;
auth.success(data, accept);
return auth.success(data, accept);
});
};
}