Skip to content

Commit

Permalink
Update routers/web/auth/oauth.go
Browse files Browse the repository at this point in the history
Co-authored-by: Gusted <williamzijl7@hotmail.com>
  • Loading branch information
hickford and Gusted committed Oct 21, 2022
1 parent 4aeb963 commit 4d77d33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion routers/web/auth/oauth.go
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@ func handleRefreshToken(ctx *context.Context, form forms.AccessTokenForm, server
if err != nil {
handleAccessTokenError(ctx, AccessTokenError{
ErrorCode: AccessTokenErrorCodeInvalidClient,
ErrorDescription: fmt.Sprintf("cannot load client with client id: '%s'", form.ClientID),
ErrorDescription: fmt.Sprintf("cannot load client with client id: %q", form.ClientID),
})
return
}
Expand Down

0 comments on commit 4d77d33

Please sign in to comment.