fixup! fixup! chore: updating go to 1.24

This commit is contained in:
Iraq Jaber 2025-03-10 12:26:20 +00:00
parent 74e7347180
commit f5e0db7ad5
2 changed files with 2 additions and 2 deletions

View file

@ -167,7 +167,7 @@ func ParseRequestObject(ctx context.Context, authReq *oidc.AuthRequest, storage
}
keySet := &jwtProfileKeySet{storage: storage, clientID: requestObject.Issuer}
if err = oidc.CheckSignature(ctx, authReq.RequestParam, payload, requestObject, nil, keySet); err != nil {
return oidc.ErrInvalidRequest().WithParent(err).WithDescription(err.Error())
return oidc.ErrInvalidRequest().WithParent(err).WithDescription("%s", err.Error())
}
CopyRequestObjectToAuthRequest(authReq, requestObject)
return nil