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

@ -138,7 +138,7 @@ func (s *LegacyServer) VerifyAuthRequest(ctx context.Context, r *Request[oidc.Au
}
}
if r.Data.ClientID == "" {
return nil, oidc.ErrInvalidRequest().WithParent(ErrAuthReqMissingClientID).WithDescription(ErrAuthReqMissingClientID.Error())
return nil, oidc.ErrInvalidRequest().WithParent(ErrAuthReqMissingClientID).WithDescription("%s", ErrAuthReqMissingClientID.Error())
}
client, err := s.provider.Storage().GetClientByClientID(ctx, r.Data.ClientID)
if err != nil {