0
0
mirror of https://github.com/go-gitea/gitea.git synced 2025-10-16 18:34:19 -04:00

Fix a bug missed return (#35655) (#35667)

Backport #35655 by @lunny

Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
This commit is contained in:
Giteabot
2025-10-15 13:40:31 +08:00
committed by GitHub
parent ae2e8c1f00
commit 5ae9bb4df9

View File

@@ -636,6 +636,7 @@ func handleAuthorizationCode(ctx *context.Context, form forms.AccessTokenForm, s
ErrorCode: oauth2_provider.AccessTokenErrorCodeInvalidRequest,
ErrorDescription: "cannot proceed your request",
})
return
}
resp, tokenErr := oauth2_provider.NewAccessTokenResponse(ctx, authorizationCode.Grant, serverKey, clientKey)
if tokenErr != nil {