aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--models/issue_comment.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/models/issue_comment.go b/models/issue_comment.go
index f97c108a7f..ea83c356ee 100644
--- a/models/issue_comment.go
+++ b/models/issue_comment.go
@@ -418,7 +418,7 @@ func createComment(e *xorm.Session, opts *CreateCommentOptions) (_ *Comment, err
}
// update the issue's updated_unix column
- if err = updateIssueCols(e, opts.Issue); err != nil {
+ if err = updateIssueCols(e, opts.Issue, "updated_unix"); err != nil {
return nil, err
}