aboutsummaryrefslogtreecommitdiffstats
path: root/bug/operation.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2021-04-08 16:25:22 +0200
committerGitHub <noreply@github.com>2021-04-08 16:25:22 +0200
commitbc5f618eba812859bf87ce2c31b278bd518d4555 (patch)
tree6429e6c47de93660b16debfa244427e79e7aed85 /bug/operation.go
parenta3e098d76314fbb197a6fbd85d2e1df02c9e00fe (diff)
parent554992523574684ecce36d38bf5310bff52c8c03 (diff)
downloadgit-bug-bc5f618eba812859bf87ce2c31b278bd518d4555.tar.gz
Merge pull request #628 from MichaelMure/entity-fix
cache: many fixes following the dag entity migration
Diffstat (limited to 'bug/operation.go')
-rw-r--r--bug/operation.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/bug/operation.go b/bug/operation.go
index 8daa2cde..b3610381 100644
--- a/bug/operation.go
+++ b/bug/operation.go
@@ -113,6 +113,8 @@ func operationUnmarshaller(author identity.Interface, raw json.RawMessage) (dag.
op.Author_ = author
case *CreateOperation:
op.Author_ = author
+ case *EditCommentOperation:
+ op.Author_ = author
case *LabelChangeOperation:
op.Author_ = author
case *NoOpOperation: