Show 404 page when release not found (#12328) (#12332)

Signed-off-by: a1012112796 <[email protected]>

Co-authored-by: Lunny Xiao <[email protected]>

Co-authored-by: 赵智超 <[email protected]>
Co-authored-by: Lunny Xiao <[email protected]>
This commit is contained in:
techknowlogick
2020-07-27 00:39:44 +03:00
committed by GitHub
co-authored by GitHub 赵智超 Lunny Xiao
parent ad68c9ccb2
commit 9bac656b7d
+4
View File
@@ -134,6 +134,10 @@ func SingleRelease(ctx *context.Context) {
release, err := models.GetRelease(ctx.Repo.Repository.ID, ctx.Params("tag"))
if err != nil {
if models.IsErrReleaseNotExist(err) {
ctx.NotFound("GetRelease", err)
return
}
ctx.ServerError("GetReleasesByRepoID", err)
return
}