diff options
Diffstat (limited to '')
-rw-r--r-- | TODO | 9 | ||||
-rw-r--r-- | registry/registry.go | 2 |
2 files changed, 4 insertions, 7 deletions
@@ -1,8 +1,5 @@ -* CGI response API - *DONE Array of activitystream Note's? - * dedup -* outbox pagination -* badger GC https://dgraph.io/docs/badger/get-started/#garbage-collection * graceful shutdown * outbox delivery -* models abstraction
\ No newline at end of file +* namespace everything to /c/ so apache can 404 requests to / instead of us +* outbox return latest 20 posts only +* make badger GC run continously diff --git a/registry/registry.go b/registry/registry.go index d4ff84b..28871bf 100644 --- a/registry/registry.go +++ b/registry/registry.go @@ -266,7 +266,7 @@ func (r *Registry) deliverAcceptToInbox(url, actorUrl *url.URL, follow vocab.Act // ...but it is optional, no digest will be signed if given "nil" // body := nil // If r were a http.ResponseWriter, call SignResponse instead. - err = signer.SignRequest(privKey, actorUrl.String(), request, jsonData) + err = signer.SignRequest(privKey, actorUrl.String(), request, nil) r.log.With("type", "delivery").With("inbox", url.String()).With("actor", actorUrl.String()).Debugf("sending accept") client := &http.Client{} |