summaryrefslogtreecommitdiffstats
path: root/models/issue.go
diff options
context:
space:
mode:
Diffstat (limited to 'models/issue.go')
-rw-r--r--models/issue.go19
1 files changed, 3 insertions, 16 deletions
diff --git a/models/issue.go b/models/issue.go
index a3597f1585..0a08a97fdd 100644
--- a/models/issue.go
+++ b/models/issue.go
@@ -721,13 +721,9 @@ func (issue *Issue) ChangeTitle(doer *User, oldTitle string) (err error) {
OldTitle: oldTitle,
NewTitle: issue.Title,
}
- comment, err := createCommentWithNoAction(sess, opts)
- if err != nil {
+ if _, err = createCommentWithNoAction(sess, opts); err != nil {
return fmt.Errorf("createComment: %v", err)
}
- if err = sendCreateCommentAction(sess, opts, comment); err != nil {
- return err
- }
if err = issue.addCrossReferences(sess, doer, true); err != nil {
return err
}
@@ -753,11 +749,7 @@ func AddDeletePRBranchComment(doer *User, repo *Repository, issueID int64, branc
Issue: issue,
CommitSHA: branchName,
}
- comment, err := createCommentWithNoAction(sess, opts)
- if err != nil {
- return err
- }
- if err = sendCreateCommentAction(sess, opts, comment); err != nil {
+ if _, err = createCommentWithNoAction(sess, opts); err != nil {
return err
}
@@ -899,12 +891,7 @@ func newIssue(e *xorm.Session, doer *User, opts NewIssueOptions) (err error) {
OldMilestoneID: 0,
MilestoneID: opts.Issue.MilestoneID,
}
- comment, err := createCommentWithNoAction(e, opts)
- if err != nil {
- return err
- }
-
- if err = sendCreateCommentAction(e, opts, comment); err != nil {
+ if _, err = createCommentWithNoAction(e, opts); err != nil {
return err
}
}