aboutsummaryrefslogtreecommitdiff
path: root/registry/registry.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--registry/registry.go2
1 files changed, 1 insertions, 1 deletions
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{}