diff options
author | Michael Muré <batolettre@gmail.com> | 2018-09-30 11:00:39 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-09-30 11:03:42 +0200 |
commit | 037f5bf50b2bb2b020620413d186b6acf47a0b61 (patch) | |
tree | 6639ac6f8c53bcc4a27660ea92faff46974e98b2 /bug/op_create.go | |
parent | d450c7a883876e0f5356fb5cb54109a0a2a77dfd (diff) | |
download | git-bug-037f5bf50b2bb2b020620413d186b6acf47a0b61.tar.gz |
timeline: various minor improvements
Diffstat (limited to 'bug/op_create.go')
-rw-r--r-- | bug/op_create.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bug/op_create.go b/bug/op_create.go index 5c41eb7c..0553137f 100644 --- a/bug/op_create.go +++ b/bug/op_create.go @@ -32,7 +32,7 @@ func (op *CreateOperation) Apply(snapshot *Snapshot) { comment := Comment{ Message: op.Message, Author: op.Author, - UnixTime: op.UnixTime, + UnixTime: Timestamp(op.UnixTime), } snapshot.Comments = []Comment{comment} |