forked from AkkomaGang/akkoma
Merge branch 'bugfix/mrf-simple-media-stripping' into 'develop'
ActivityPub MRF SimplePolicy: fix media stripping See merge request pleroma/pleroma!133
This commit is contained in:
commit
39c80a3667
1 changed files with 2 additions and 1 deletions
|
@ -15,7 +15,8 @@ defp check_reject(actor_info, object) do
|
|||
@media_removal Keyword.get(@mrf_policy, :media_removal)
|
||||
defp check_media_removal(actor_info, object) do
|
||||
if actor_info.host in @media_removal do
|
||||
object = Map.delete(object, "attachments")
|
||||
child_object = Map.delete(object["object"], "attachment")
|
||||
object = Map.put(object, "object", child_object)
|
||||
end
|
||||
|
||||
{:ok, object}
|
||||
|
|
Loading…
Reference in a new issue