diff options
author | Michael Muré <batolettre@gmail.com> | 2021-04-18 20:37:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-18 20:37:47 +0200 |
commit | 24155156223595e48f215e87cf9ce7895e22f4a7 (patch) | |
tree | 84bb7a57e62f376068241bf911fa43b3694a1eb1 /bug/op_create.go | |
parent | 718aa5f6e382b9c09caf866215358238ce6b5004 (diff) | |
parent | 6a5ffd94e0c7a2b9373981f99c4798eda601f4da (diff) | |
download | git-bug-24155156223595e48f215e87cf9ce7895e22f4a7.tar.gz |
Merge pull request #631 from MichaelMure/comment-edit
Fix ID string in order to find correct bug instance on comment edit operation
Diffstat (limited to 'bug/op_create.go')
-rw-r--r-- | bug/op_create.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/bug/op_create.go b/bug/op_create.go index 1d01020c..9c972195 100644 --- a/bug/op_create.go +++ b/bug/op_create.go @@ -55,9 +55,8 @@ func (op *CreateOperation) Apply(snapshot *Snapshot) { snapshot.Title = op.Title - commentId := entity.CombineIds(snapshot.Id(), op.Id()) comment := Comment{ - id: commentId, + id: entity.CombineIds(snapshot.Id(), op.Id()), Message: op.Message, Author: op.Author_, UnixTime: timestamp.Timestamp(op.UnixTime), @@ -69,7 +68,7 @@ func (op *CreateOperation) Apply(snapshot *Snapshot) { snapshot.Timeline = []TimelineItem{ &CreateTimelineItem{ - CommentTimelineItem: NewCommentTimelineItem(commentId, comment), + CommentTimelineItem: NewCommentTimelineItem(comment), }, } } |