Skip to content

Commit

Permalink
fix: Minor error message change
Browse files Browse the repository at this point in the history
  • Loading branch information
vivshankar committed Jun 25, 2022
1 parent de4888a commit ef94374
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion authorize_request_handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ func (f *Fosite) authorizeRequestFromPAR(ctx context.Context, r *http.Request, r

storage, ok := f.Store.(PARStorage)
if !ok {
return false, errorsx.WithStack(ErrServerError.WithHint("Invalid storage").WithDebug("PARStorage not implemented"))
return false, errorsx.WithStack(ErrServerError.WithDebug("Request failed because the 'PARStorage' interface is not implemented."))
}

// hydrate the requester
Expand Down

0 comments on commit ef94374

Please sign in to comment.