1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-19 08:48:37 +00:00

Normalize oauth email username (#28561)

This commit is contained in:
Kyle D
2024-01-03 16:48:20 -08:00
committed by GitHub
parent 657b23d635
commit 54acf7b0d4
8 changed files with 80 additions and 10 deletions

View File

@@ -970,8 +970,13 @@ func SignInOAuthCallback(ctx *context.Context) {
ctx.ServerError("CreateUser", err)
return
}
uname, err := getUserName(&gothUser)
if err != nil {
ctx.ServerError("UserSignIn", err)
return
}
u = &user_model.User{
Name: getUserName(&gothUser),
Name: uname,
FullName: gothUser.Name,
Email: gothUser.Email,
LoginType: auth.OAuth2,