Merge branch 'bugfix/digest-legacy-compat' into 'develop'

activitypub: actually send digest header when federating

See merge request pleroma/pleroma!261
stable
lambda 6 years ago
commit d7368ea272

@ -653,7 +653,11 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub 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

Loading…
Cancel
Save