From fd8d6405c8c7c12594f3d5866ac9eafb7edb8711 Mon Sep 17 00:00:00 2001
From: kolaente <konrad@kola-entertainments.de>
Date: Sun, 29 Apr 2018 06:48:14 +0200
Subject: [PATCH] Fix only updated_unix when adding a comment (#3855)

---
 models/issue_comment.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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
 	}