Skip to content

Commit

Permalink
Revert 605 (#629)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew-Chen-Wang committed Oct 10, 2022
1 parent 7740384 commit 6c03c4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rest_framework_simplejwt/authentication.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def get_validated_token(self, raw_token):
messages = []
for AuthToken in api_settings.AUTH_TOKEN_CLASSES:
try:
return AuthToken(raw_token, api_settings.VERIFYING_KEY is not None)
return AuthToken(raw_token)
except TokenError as e:
messages.append(
{
Expand Down

0 comments on commit 6c03c4e

Please sign in to comment.