1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28: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

@@ -55,7 +55,11 @@ func LinkAccount(ctx *context.Context) {
}
gu, _ := gothUser.(goth.User)
uname := getUserName(&gu)
uname, err := getUserName(&gu)
if err != nil {
ctx.ServerError("UserSignIn", err)
return
}
email := gu.Email
ctx.Data["user_name"] = uname
ctx.Data["email"] = email