summaryrefslogtreecommitdiffstats
path: root/models/mail.go
diff options
context:
space:
mode:
Diffstat (limited to 'models/mail.go')
-rw-r--r--models/mail.go7
1 files changed, 5 insertions, 2 deletions
diff --git a/models/mail.go b/models/mail.go
index 6be0df95ba..2bb07607a4 100644
--- a/models/mail.go
+++ b/models/mail.go
@@ -157,10 +157,13 @@ func composeTplData(subject, body, link string) map[string]interface{} {
func composeIssueCommentMessage(issue *Issue, doer *User, content string, comment *Comment, tplName base.TplName, tos []string, info string) *mailer.Message {
subject := issue.mailSubject()
- issue.LoadRepo()
+ err := issue.LoadRepo()
+ if err != nil {
+ log.Error("LoadRepo: %v", err)
+ }
body := string(markup.RenderByType(markdown.MarkupName, []byte(content), issue.Repo.HTMLURL(), issue.Repo.ComposeMetas()))
- data := make(map[string]interface{}, 10)
+ var data = make(map[string]interface{}, 10)
if comment != nil {
data = composeTplData(subject, body, issue.HTMLURL()+"#"+comment.HashTag())
} else {