fix non existent milestone with 500 error (#7867)
This commit is contained in:
parent
14230ca843
commit
a315c8d992
1 changed files with 5 additions and 0 deletions
|
@ -253,6 +253,11 @@ func MilestoneIssuesAndPulls(ctx *context.Context) {
|
|||
milestoneID := ctx.ParamsInt64(":id")
|
||||
milestone, err := models.GetMilestoneByID(milestoneID)
|
||||
if err != nil {
|
||||
if models.IsErrMilestoneNotExist(err) {
|
||||
ctx.NotFound("GetMilestoneByID", err)
|
||||
return
|
||||
}
|
||||
|
||||
ctx.ServerError("GetMilestoneByID", err)
|
||||
return
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue