aboutsummaryrefslogtreecommitdiff
path: root/models/issue_comment.go
diff options
context:
space:
mode:
Diffstat (limited to 'models/issue_comment.go')
-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 d1b7cb8d..479da920 100644
--- a/models/issue_comment.go
+++ b/models/issue_comment.go
@@ -69,7 +69,7 @@ type Comment struct {
}
func (c *Comment) BeforeInsert() {
- c.CreatedUnix = time.Now().UTC().Unix()
+ c.CreatedUnix = time.Now().Unix()
}
func (c *Comment) AfterSet(colName string, _ xorm.Cell) {