Template
1
0
Fork 0
mirror of https://codeberg.org/forgejo/forgejo synced 2024-11-22 01:44:24 +01:00

Fix oauth2 error handle not return immediately (#32514)

(cherry picked from commit 4121f952d18a4c3a3c08ae645af3458ef08b439d)
This commit is contained in:
Lunny Xiao 2024-11-14 18:13:01 -08:00 committed by Earl Warren
parent c2e8790df3
commit 96ee0f5647
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00

View file

@ -1013,6 +1013,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