diff options
author | Julio Capote <jcapote@gmail.com> | 2023-01-05 19:21:18 +0000 |
---|---|---|
committer | Julio Capote <jcapote@gmail.com> | 2023-01-05 19:21:18 +0000 |
commit | e5e26dd7631f6a7cfc12faf7208ca5b2b62ba735 (patch) | |
tree | 2c606a6b608c4d6292b833511a3d45a84bc0dfde /registry | |
parent | d6c507fb9402695b8fb3adbcce486df998919c8a (diff) | |
download | communique-e5e26dd7631f6a7cfc12faf7208ca5b2b62ba735.tar.gz |
back to this
Diffstat (limited to 'registry')
-rw-r--r-- | registry/registry.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/registry/registry.go b/registry/registry.go index 9bcfa34..998bb53 100644 --- a/registry/registry.go +++ b/registry/registry.go @@ -281,7 +281,7 @@ func (r *Registry) deliverAcceptToInbox(url, actorUrl, actorKeyUrl *url.URL, fol prefs := []httpsig.Algorithm{} digestAlgorithm := httpsig.DigestSha256 // The "Date" and "Digest" headers must already be set on r, as well as r.URL. - headersToSign := []string{httpsig.RequestTarget, "host", "date", "digest", "content-type", "expires"} + headersToSign := []string{httpsig.RequestTarget, "host", "date", "digest", "content-type"} signer, _, err := httpsig.NewSigner(prefs, digestAlgorithm, headersToSign, httpsig.Signature, 100) if err != nil { return err |