From 554992523574684ecce36d38bf5310bff52c8c03 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Sun, 4 Apr 2021 13:28:21 +0200 Subject: cache: many fixes following the dag entity migration --- bug/operation.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'bug/operation.go') 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: -- cgit