diff options
author | Julio Capote <jcapote@gmail.com> | 2023-01-05 02:15:57 +0000 |
---|---|---|
committer | Julio Capote <jcapote@gmail.com> | 2023-01-05 02:15:57 +0000 |
commit | e9124914cd6b05502cb5dd7f34720b27657560aa (patch) | |
tree | 72c68e673a88e8bd88d02ff22c80d0d17ccb8b88 /http | |
parent | 6736b04552c582ab5a07556ba20eca92612daf51 (diff) | |
download | communique-e9124914cd6b05502cb5dd7f34720b27657560aa.tar.gz |
refactor verification into verifier tool, start follow/undo
Diffstat (limited to 'http')
-rw-r--r-- | http/router.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/http/router.go b/http/router.go index 456ed27..fcbd7d2 100644 --- a/http/router.go +++ b/http/router.go @@ -88,7 +88,7 @@ func (s *Router) Start(zapWriter io.Writer) { payload, ).Debug("received item") actorParam := c.Param("actor") - err := s.registry.Inbox(actorParam, c.Request) + err := s.registry.Inbox(actorParam, c.Request, buf.Bytes()) resource := map[string]interface{}{} render(c, resource, err) }) |