Browse Source

Fix oauth2 error handle not return immediately (#32514) (#32516)

Backport #32514 by lunny

Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
pull/32520/head
Giteabot 1 year ago committed by GitHub
parent
commit
257ce61023
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      routers/web/auth/oauth.go

2
routers/web/auth/oauth.go

@ -953,6 +953,8 @@ func SignInOAuthCallback(ctx *context.Context) { @@ -953,6 +953,8 @@ func SignInOAuthCallback(ctx *context.Context) {
}
if err, ok := err.(*go_oauth2.RetrieveError); ok {
ctx.Flash.Error("OAuth2 RetrieveError: "+err.Error(), true)
ctx.Redirect(setting.AppSubURL + "/user/login")
return
}
ctx.ServerError("UserSignIn", err)
return

Loading…
Cancel
Save