diff options
Diffstat (limited to 'models/issue_comment.go')
-rw-r--r-- | models/issue_comment.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/models/issue_comment.go b/models/issue_comment.go index c68df028e0..9ca7aaeb01 100644 --- a/models/issue_comment.go +++ b/models/issue_comment.go @@ -750,10 +750,6 @@ func CreateComment(opts *CreateCommentOptions) (comment *Comment, err error) { return nil, err } - if err = sendCreateCommentAction(sess, opts, comment); err != nil { - return nil, err - } - if err = sess.Commit(); err != nil { return nil, err } |