Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pierfani committed Sep 11, 2024
1 parent c950085 commit 4e8e2f3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,10 @@ private void verifyToken(String token) {
throw new FirebaseAppCheckException("Token is null");
}

initializeProvider();


try {
initializeProvider();
DecodedJWT jwt = JWT.decode(token);
RSAPublicKey publicKey = (RSAPublicKey) provider.get(jwt.getKeyId()).getPublicKey();

Expand Down

0 comments on commit 4e8e2f3

Please sign in to comment.