Browse Source

fix regression from #16075 (#18261)

we don't want reviews to count towards comments, as this needs changes
in other components as well (eg repo stats cron job, etc).
tags/v1.15.10
Norwin 2 years ago
parent
commit
e4120bbc89
No account linked to committer's email address
1 changed files with 2 additions and 3 deletions
  1. 2
    3
      models/issue_comment.go

+ 2
- 3
models/issue_comment.go View File

@@ -762,13 +762,12 @@ func updateCommentInfos(e *xorm.Session, opts *CreateCommentOptions, comment *Co
}
}
fallthrough
case CommentTypeReview:
fallthrough
case CommentTypeComment:
if _, err = e.Exec("UPDATE `issue` SET num_comments=num_comments+1 WHERE id=?", opts.Issue.ID); err != nil {
return err
}

fallthrough
case CommentTypeReview:
// Check attachments
attachments, err := getAttachmentsByUUIDs(e, opts.Attachments)
if err != nil {

Loading…
Cancel
Save