From fd14a0763ebf0bcdf6a719aafcbf73f7f5153400 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Thu, 10 Mar 2022 16:34:57 +0100 Subject: entity: allow to resolve identities when numashalling operations --- bug/operation.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bug/operation.go') diff --git a/bug/operation.go b/bug/operation.go index b3610381..2e86921a 100644 --- a/bug/operation.go +++ b/bug/operation.go @@ -71,7 +71,7 @@ func idOperation(op Operation, base *OpBase) entity.Id { return base.id } -func operationUnmarshaller(author identity.Interface, raw json.RawMessage) (dag.Operation, error) { +func operationUnmarshaller(author identity.Interface, raw json.RawMessage, resolver identity.Resolver) (dag.Operation, error) { var t struct { OperationType OperationType `json:"type"` } -- cgit