activitypub: actually send digest header when federating

this is needed for backwards compatibility with non-digest pleroma instances
This commit is contained in:
William Pitcock 2018-08-01 10:22:03 +00:00
parent ab4b4538ce
commit 3be58ad34e

View file

@ -653,7 +653,11 @@ def publish_one(%{inbox: inbox, json: json, actor: actor, id: id}) do
@httpoison.post(
inbox,
json,
[{"Content-Type", "application/activity+json"}, {"signature", signature}],
[
{"Content-Type", "application/activity+json"},
{"signature", signature},
{"digest", digest}
],
hackney: [pool: :default]
)
end