fix POST /{username}/{reponame}/{type:issues|pulls}/{index}/content-history/soft-delete

(cherry picked from commit a82cb96480)
This commit is contained in:
Loïc Dachary 2023-11-12 18:24:56 +01:00
parent 381c66ddef
commit 9ea9ba8e7e
No known key found for this signature in database
GPG key ID: 992D23B392F9E4F2

View file

@ -194,11 +194,19 @@ func SoftDeleteContentHistory(ctx *context.Context) {
log.Error("can not get comment for issue content history %v. err=%v", historyID, err)
return
}
if comment.IssueID != issue.ID {
ctx.NotFound("CompareRepoID", issues_model.ErrCommentNotExist{})
return
}
}
if history, err = issues_model.GetIssueContentHistoryByID(ctx, historyID); err != nil {
log.Error("can not get issue content history %v. err=%v", historyID, err)
return
}
if history.IssueID != issue.ID {
ctx.NotFound("CompareRepoID", issues_model.ErrCommentNotExist{})
return
}
canSoftDelete := canSoftDeleteContentHistory(ctx, issue, comment, history)
if !canSoftDelete {