diff options
Diffstat (limited to 'bug/op_edit_comment.go')
-rw-r--r-- | bug/op_edit_comment.go | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/bug/op_edit_comment.go b/bug/op_edit_comment.go index a37ce8f7..48020421 100644 --- a/bug/op_edit_comment.go +++ b/bug/op_edit_comment.go @@ -59,14 +59,11 @@ func (op *EditCommentOperation) Apply(snapshot *Snapshot) { UnixTime: timestamp.Timestamp(op.UnixTime), } - switch target.(type) { + switch target := target.(type) { case *CreateTimelineItem: - item := target.(*CreateTimelineItem) - item.Append(comment) - + target.Append(comment) case *AddCommentTimelineItem: - item := target.(*AddCommentTimelineItem) - item.Append(comment) + target.Append(comment) } // Updating the corresponding comment |