Also ensure the repo is loaded (#5895)

Signed-off-by: Andrew Thornton <art27@cantab.net>
tokarchuk/v1.17
zeripath 6 years ago committed by GitHub
parent 002e898bcf
commit 2569363204
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      models/issue_mail.go

@ -88,6 +88,10 @@ func mailIssueCommentToParticipants(e Engine, issue *Issue, doer *User, content
names = append(names, participants[i].Name) names = append(names, participants[i].Name)
} }
if err := issue.loadRepo(e); err != nil {
return err
}
for _, to := range tos { for _, to := range tos {
SendIssueCommentMail(issue, doer, content, comment, []string{to}) SendIssueCommentMail(issue, doer, content, comment, []string{to})
} }

Loading…
Cancel
Save