Fix Auth token

This commit is contained in:
Gaël Métais
2014-12-10 08:16:11 +01:00
parent 49015e3422
commit 84faabca86
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ function isTokenValid(token) {
var data = null;
try {
jwt.decode(token, config.tokenSalt);
data = jwt.decode(token, config.tokenSalt);
} catch(err) {
debug('Error while decoding token');
debug(err);