Skip to content

Commit

Permalink
Merge pull request #3 from sethstone/patch-1
Browse files Browse the repository at this point in the history
Fixes #2
  • Loading branch information
andrew-dixon authored Oct 6, 2017
2 parents 5a4203d + 33f720f commit 1fa46d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions models/JWTService.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ component singleton {
try {
decode( arguments.token, arguments.key , arguments.algorithm );
}
catch(e) {
catch(any e) {
isValid = false;
}

Expand Down Expand Up @@ -70,4 +70,4 @@ component singleton {
return ToString( ToBinary( _base64UrlUnescape( arguments.str )));
}

}
}

0 comments on commit 1fa46d6

Please sign in to comment.