summaryrefslogtreecommitdiffstats
path: root/models/user.go
diff options
context:
space:
mode:
authorLunny Xiao <xiaolunwen@gmail.com>2020-06-18 01:50:11 +0800
committerGitHub <noreply@github.com>2020-06-17 20:50:11 +0300
commit1645d4a5d8def3cc5451e068aa0a321e028a889b (patch)
tree99e1f29ec2dbb568cfee090ea4a2e49dfca02280 /models/user.go
parent61cd0ce86601a0bffb625ae27a7b76ee8a15cb36 (diff)
downloadgitea-1645d4a5d8def3cc5451e068aa0a321e028a889b.tar.gz
gitea-1645d4a5d8def3cc5451e068aa0a321e028a889b.zip
Use ID or Where to instead directly use Get when load object from database (#11925)
* Use ID or Where to instead directly use Get when load object from database * Apply suggestions from code review Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: zeripath <art27@cantab.net>
Diffstat (limited to 'models/user.go')
-rw-r--r--models/user.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/models/user.go b/models/user.go
index 8056e30cea..4597508fb1 100644
--- a/models/user.go
+++ b/models/user.go
@@ -1559,8 +1559,8 @@ func GetUserByEmailContext(ctx DBContext, email string) (*User, error) {
// Finally, if email address is the protected email address:
if strings.HasSuffix(email, fmt.Sprintf("@%s", setting.Service.NoReplyAddress)) {
username := strings.TrimSuffix(email, fmt.Sprintf("@%s", setting.Service.NoReplyAddress))
- user := &User{LowerName: username}
- has, err := ctx.e.Get(user)
+ user := &User{}
+ has, err := ctx.e.Where("lower_name=?", username).Get(user)
if err != nil {
return nil, err
}