Load reviewer before sending notification (#27063) (#27064)

Fixes #27035

(cherry picked from commit d8b39324d7)
This commit is contained in:
sebastian-sauer 2023-09-13 22:32:58 +02:00 committed by Earl Warren
parent 745b45406d
commit 3ea5384241
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00

View file

@ -177,6 +177,9 @@ func (m *mailNotifier) NotifyPullRequestPushCommits(ctx context.Context, doer *u
}
func (m *mailNotifier) NotifyPullReviewDismiss(ctx context.Context, doer *user_model.User, review *issues_model.Review, comment *issues_model.Comment) {
if err := comment.Review.LoadReviewer(ctx); err != nil {
log.Error("Error in PullReviewDismiss while loading reviewer for issue[%d], review[%d] and reviewer[%d]: %v", review.Issue.ID, comment.Review.ID, comment.Review.ReviewerID, err)
}
if err := mailer.MailParticipantsComment(ctx, comment, activities_model.ActionPullReviewDismissed, review.Issue, nil); err != nil {
log.Error("MailParticipantsComment: %v", err)
}