fix missing return (#6751)
parent
65b3f513c3
commit
e8f4c7733a
|
@ -302,6 +302,7 @@ func GrantApplicationOAuth(ctx *context.Context, form auth.GrantApplicationForm)
|
||||||
redirect, err := code.GenerateRedirectURI(form.State)
|
redirect, err := code.GenerateRedirectURI(form.State)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
handleServerError(ctx, form.State, form.RedirectURI)
|
handleServerError(ctx, form.State, form.RedirectURI)
|
||||||
|
return
|
||||||
}
|
}
|
||||||
ctx.Redirect(redirect.String(), 302)
|
ctx.Redirect(redirect.String(), 302)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue