diff options
-rw-r--r-- | http/router.go | 3 | ||||
-rw-r--r-- | registry/registry.go | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/http/router.go b/http/router.go index 3b4b1d1..910c67c 100644 --- a/http/router.go +++ b/http/router.go @@ -84,6 +84,9 @@ func (s *Router) Start(zapWriter io.Writer) { "content-type", c.GetHeader("Content-Type"), ).With( + "digest", + c.GetHeader("digest"), + ).With( "payload", payload, ).Debug("received inbox item") diff --git a/registry/registry.go b/registry/registry.go index ac486d9..4b61a7b 100644 --- a/registry/registry.go +++ b/registry/registry.go @@ -253,6 +253,7 @@ func (r *Registry) deliverAcceptToInbox(url, actorUrl *url.URL, follow vocab.Act request, err := http.NewRequest("POST", url.String(), bytes.NewBuffer(jsonData)) request.Header.Set("Date", time.Now().Format(http.TimeFormat)) request.Header.Set("Content-Type", "application/ld+json; profile=\"https://www.w3.org/ns/activitystreams\"") + request.Header.Set("Host", url.Host) r.log.With( "type", |