Fix oauth2 error handle not return immediately (#32514)

pull/32505/head
Lunny Xiao 14 hours ago committed by GitHub
parent 21f7db2124
commit 4121f952d1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      routers/web/auth/oauth.go

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

Loading…
Cancel
Save