mirror of
https://github.com/go-gitea/gitea
synced 2025-07-23 02:38:35 +00:00
build failed by deleting release by API (#562)
This commit is contained in:
@@ -178,7 +178,7 @@ func DeleteRelease(ctx *context.APIContext) {
|
|||||||
ctx.Status(404)
|
ctx.Status(404)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if err := models.DeleteReleaseByID(id, ctx.User); err != nil {
|
if err := models.DeleteReleaseByID(id, ctx.User, false); err != nil {
|
||||||
ctx.Error(500, "DeleteReleaseByID", err)
|
ctx.Error(500, "DeleteReleaseByID", err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user