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 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do
@httpoison.post( @httpoison.post(
inbox, inbox,
json, json,
[{"Content-Type", "application/activity+json"}, {"signature", signature}], [
{"Content-Type", "application/activity+json"},
{"signature", signature},
{"digest", digest}
],
hackney: [pool: :default] hackney: [pool: :default]
) )
end end