diff options
author | Ethan Koenig <etk39@cornell.edu> | 2017-06-25 02:15:09 -0400 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2017-06-25 14:15:09 +0800 |
commit | 2559a34b97c4f156a4fec82b03b88a6ba4caeb76 (patch) | |
tree | 915aeaa4ddb5f577ee3445d42f2b94cd578876c7 /routers/api/v1/repo/label.go | |
parent | f64c232953d13043b262dc8da55acb3738e58d15 (diff) | |
download | gitea-2559a34b97c4f156a4fec82b03b88a6ba4caeb76.tar.gz gitea-2559a34b97c4f156a4fec82b03b88a6ba4caeb76.zip |
Load label ID in NewLabels (#2045)
Diffstat (limited to 'routers/api/v1/repo/label.go')
-rw-r--r-- | routers/api/v1/repo/label.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/api/v1/repo/label.go b/routers/api/v1/repo/label.go index c22db517c3..c932fb1585 100644 --- a/routers/api/v1/repo/label.go +++ b/routers/api/v1/repo/label.go @@ -64,7 +64,7 @@ func CreateLabel(ctx *context.APIContext, form api.CreateLabelOption) { Color: form.Color, RepoID: ctx.Repo.Repository.ID, } - if err := models.NewLabels(label); err != nil { + if err := models.NewLabel(label); err != nil { ctx.Error(500, "NewLabel", err) return } |