Browse Source

fix regression from #16075 (#18260)

we don't want reviews to count towards comments, as this needs changes
in other components as well (eg repo stats cron job, etc).

Co-authored-by: 6543 <6543@obermui.de>
tags/v1.16.0-rc1
Norwin 2 years ago
parent
commit
696521b33b
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

@@ -835,13 +835,12 @@ func updateCommentInfos(ctx context.Context, opts *CreateCommentOptions, comment
}
}
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 := repo_model.GetAttachmentsByUUIDs(ctx, opts.Attachments)
if err != nil {

Loading…
Cancel
Save