diff options
Diffstat (limited to 'models/issue_comment.go')
-rw-r--r-- | models/issue_comment.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/models/issue_comment.go b/models/issue_comment.go index 326676ecfc..753e79b3d3 100644 --- a/models/issue_comment.go +++ b/models/issue_comment.go @@ -399,7 +399,11 @@ func createComment(e *xorm.Session, opts *CreateCommentOptions) (_ *Comment, err if err != nil { return nil, err } + } + // update the issue's updated_unix column + if err = updateIssueCols(e, opts.Issue); err != nil { + return nil, err } // Notify watchers for whatever action comes in, ignore if no action type. |