diff options
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 a293801c4f..fef6ebf07a 100644 --- a/routers/api/v1/repo/label.go +++ b/routers/api/v1/repo/label.go @@ -222,7 +222,7 @@ func EditLabel(ctx *context.APIContext, form api.EditLabelOption) { label.Description = *form.Description } if err := models.UpdateLabel(label); err != nil { - ctx.ServerError("UpdateLabel", err) + ctx.Error(http.StatusInternalServerError, "UpdateLabel", err) return } ctx.JSON(http.StatusOK, convert.ToLabel(label)) |