Skip to content

Commit

Permalink
Fix error decoding claims (#744)
Browse files Browse the repository at this point in the history
  • Loading branch information
juanfont committed Aug 17, 2022
1 parent e1a95e2 commit cc3de7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oidc.go
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ func extractIDTokenClaims(
idToken *oidc.IDToken,
) (*IDTokenClaims, error) {
var claims IDTokenClaims
if err := idToken.Claims(claims); err != nil {
if err := idToken.Claims(&claims); err != nil {
log.Error().
Err(err).
Caller().
Expand Down

0 comments on commit cc3de7e

Please sign in to comment.