You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As far as I can see the possible callback (last arg) for jwt_decode will never be executed. That is in a call like
c->oauth2->jwt_decode($provider, data => $provider_res->{id_token}, sub { ....} );
the peek method at the end will never be correctly passed on to $jwt->decode($args->{data}, $peek); because of how _call collects arguments before passing it to _jwt_decode.
The text was updated successfully, but these errors were encountered:
As far as I can see the possible callback (last arg) for
jwt_decode
will never be executed. That is in a call likethe peek method at the end will never be correctly passed on to
$jwt->decode($args->{data}, $peek);
because of how_call
collects arguments before passing it to_jwt_decode
.The text was updated successfully, but these errors were encountered: