diff options
Diffstat (limited to 'bug/operations/add_comment.go')
-rw-r--r-- | bug/operations/add_comment.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bug/operations/add_comment.go b/bug/operations/add_comment.go index 1f9e3410..ce33522c 100644 --- a/bug/operations/add_comment.go +++ b/bug/operations/add_comment.go @@ -11,7 +11,7 @@ type AddCommentOperation struct { bug.OpBase Message string Author bug.Person - Time time.Time + Time int64 } func NewAddCommentOp(author bug.Person, message string) AddCommentOperation { @@ -19,7 +19,7 @@ func NewAddCommentOp(author bug.Person, message string) AddCommentOperation { OpBase: bug.OpBase{OperationType: bug.ADD_COMMENT}, Message: message, Author: author, - Time: time.Now(), + Time: time.Now().Unix(), } } |