aboutsummaryrefslogtreecommitdiff
path: root/http
diff options
context:
space:
mode:
authorJulio Capote <jcapote@gmail.com>2023-01-05 02:15:57 +0000
committerJulio Capote <jcapote@gmail.com>2023-01-05 02:15:57 +0000
commite9124914cd6b05502cb5dd7f34720b27657560aa (patch)
tree72c68e673a88e8bd88d02ff22c80d0d17ccb8b88 /http
parent6736b04552c582ab5a07556ba20eca92612daf51 (diff)
downloadcommunique-e9124914cd6b05502cb5dd7f34720b27657560aa.tar.gz
refactor verification into verifier tool, start follow/undo
Diffstat (limited to 'http')
-rw-r--r--http/router.go2
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)
})