diff options
Diffstat (limited to 'services')
-rw-r--r-- | services/issue/assignee.go | 4 | ||||
-rw-r--r-- | services/webhook/notifier.go | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/services/issue/assignee.go b/services/issue/assignee.go index 4d0224d4bf..943a761e28 100644 --- a/services/issue/assignee.go +++ b/services/issue/assignee.go @@ -73,7 +73,7 @@ func ReviewRequest(ctx context.Context, issue *issues_model.Issue, doer, reviewe } if comment != nil { - notification.NotifyPullReviewRequest(ctx, doer, issue, reviewer, isAdd, comment) + notification.NotifyPullRequestReviewRequest(ctx, doer, issue, reviewer, isAdd, comment) } return comment, err @@ -260,7 +260,7 @@ func TeamReviewRequest(ctx context.Context, issue *issues_model.Issue, doer *use continue } comment.AssigneeID = member.ID - notification.NotifyPullReviewRequest(ctx, doer, issue, member, isAdd, comment) + notification.NotifyPullRequestReviewRequest(ctx, doer, issue, member, isAdd, comment) } return comment, err diff --git a/services/webhook/notifier.go b/services/webhook/notifier.go index e10c83e02f..e6d1875b29 100644 --- a/services/webhook/notifier.go +++ b/services/webhook/notifier.go @@ -719,9 +719,9 @@ func (m *webhookNotifier) NotifyPullRequestReview(ctx context.Context, pr *issue } } -func (m *webhookNotifier) NotifyPullReviewRequest(ctx context.Context, doer *user_model.User, issue *issues_model.Issue, reviewer *user_model.User, isRequest bool, comment *issues_model.Comment) { +func (m *webhookNotifier) NotifyPullRequestReviewRequest(ctx context.Context, doer *user_model.User, issue *issues_model.Issue, reviewer *user_model.User, isRequest bool, comment *issues_model.Comment) { if !issue.IsPull { - log.Warn("NotifyPullReviewRequest: issue is not a pull request: %v", issue.ID) + log.Warn("NotifyPullRequestReviewRequest: issue is not a pull request: %v", issue.ID) return } mode, _ := access_model.AccessLevelUnit(ctx, doer, issue.Repo, unit.TypePullRequests) |