1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 02:08:36 +00:00

Move some issue methods as functions (#19255)

* Move some issue methods as functions

* Fix bug
This commit is contained in:
Lunny Xiao
2022-03-29 22:57:33 +08:00
committed by GitHub
parent bd97736b9c
commit 74731c3a5a
19 changed files with 63 additions and 84 deletions

View File

@@ -858,7 +858,7 @@ func updateCommentInfos(ctx context.Context, opts *CreateCommentOptions, comment
}
}
case CommentTypeReopen, CommentTypeClose:
if err = opts.Issue.updateClosedNum(ctx); err != nil {
if err = updateIssueClosedNum(ctx, opts.Issue); err != nil {
return err
}
}