Expand "to" of delete activities

This commit is contained in:
Karen Konou 2019-03-04 10:47:04 +01:00
commit 8302cdb5dc
2 changed files with 14 additions and 1 deletions

View file

@ -305,11 +305,14 @@ 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"] ||
[] ++ [user.follower_address, "https://www.w3.org/ns/activitystreams#Public"]
data = %{
"type" => "Delete",
"actor" => actor,
"object" => id,
"to" => [user.follower_address, "https://www.w3.org/ns/activitystreams#Public"]
"to" => Enum.uniq(to)
}
with {:ok, _} <- Object.delete(object),