mirror of
https://git.youjo.love/youjo/youjo-be.git
synced 2025-02-07 22:13:36 +01:00
Merge branch 'bugfix/digest-legacy-compat' into 'develop'
activitypub: actually send digest header when federating See merge request pleroma/pleroma!261
This commit is contained in:
commit
d7368ea272
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue