Merge branch 'bugfix/delete-activity-audience' into 'develop'
expand the audience of delete activities to all recipients of the deleted object Closes #682 See merge request pleroma/pleroma!891
This commit is contained in:
commit
992145e64c
2 changed files with 23 additions and 1 deletions
|
|
@ -309,12 +309,13 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do
|
|||
|
||||
def delete(%Object{data: %{"id" => id, "actor" => actor}} = object, local \\ true) do
|
||||
user = User.get_cached_by_ap_id(actor)
|
||||
to = object.data["to"] || [] ++ object.data["cc"] || []
|
||||
|
||||
data = %{
|
||||
"type" => "Delete",
|
||||
"actor" => actor,
|
||||
"object" => id,
|
||||
"to" => [user.follower_address, "https://www.w3.org/ns/activitystreams#Public"]
|
||||
"to" => to
|
||||
}
|
||||
|
||||
with {:ok, _} <- Object.delete(object),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue