mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-09 19:31:21 +01:00
Fix wrong notification on merge (#9450)
This commit is contained in:
parent
f8a6eb8f32
commit
4f42e03a35
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ func (m *mailNotifier) NotifyMergePullRequest(pr *models.PullRequest, doer *mode
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := mailer.MailParticipants(pr.Issue, doer, models.ActionClosePullRequest); err != nil {
|
if err := mailer.MailParticipants(pr.Issue, doer, models.ActionMergePullRequest); err != nil {
|
||||||
log.Error("MailParticipants: %v", err)
|
log.Error("MailParticipants: %v", err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue