diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2020-06-18 01:50:11 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-17 20:50:11 +0300 |
commit | 1645d4a5d8def3cc5451e068aa0a321e028a889b (patch) | |
tree | 99e1f29ec2dbb568cfee090ea4a2e49dfca02280 /models/upload.go | |
parent | 61cd0ce86601a0bffb625ae27a7b76ee8a15cb36 (diff) | |
download | gitea-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/upload.go')
-rw-r--r-- | models/upload.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/models/upload.go b/models/upload.go index 65b3220c12..c3719368f3 100644 --- a/models/upload.go +++ b/models/upload.go @@ -76,8 +76,8 @@ func NewUpload(name string, buf []byte, file multipart.File) (_ *Upload, err err // GetUploadByUUID returns the Upload by UUID func GetUploadByUUID(uuid string) (*Upload, error) { - upload := &Upload{UUID: uuid} - has, err := x.Get(upload) + upload := &Upload{} + has, err := x.Where("uuid=?", uuid).Get(upload) if err != nil { return nil, err } else if !has { |