Revert "fix POST /{owner}/{repo}/comments/{id}"

This reverts commit 5cc6361e31.
This commit is contained in:
Loïc Dachary 2023-11-26 06:33:38 +01:00
parent 5fc5d186e0
commit db1bd78d71
No known key found for this signature in database
GPG key ID: 992D23B392F9E4F2

View file

@ -2971,11 +2971,6 @@ func UpdateCommentContent(ctx *context.Context) {
return
}
if comment.Issue.RepoID != ctx.Repo.Repository.ID {
ctx.NotFound("CompareRepoID", issues_model.ErrCommentNotExist{})
return
}
if !ctx.IsSigned || (ctx.Doer.ID != comment.PosterID && !ctx.Repo.CanWriteIssuesOrPulls(comment.Issue.IsPull)) {
ctx.Error(http.StatusForbidden)
return