diff options
| author | Karen Konou <konoukaren@gmail.com> | 2019-03-04 10:47:04 +0100 | 
|---|---|---|
| committer | Karen Konou <konoukaren@gmail.com> | 2019-03-04 10:47:04 +0100 | 
| commit | 8302cdb5dc2b2f74d87f7b36a5ed67e29ea129c0 (patch) | |
| tree | df561bd45f9db3c97d772aac3f6681fdbd35d967 /lib | |
| parent | abd0b85efd410c4d6c86957f1a725941f2165f7b (diff) | |
| download | pleroma-8302cdb5dc2b2f74d87f7b36a5ed67e29ea129c0.tar.gz pleroma-8302cdb5dc2b2f74d87f7b36a5ed67e29ea129c0.zip | |
Expand "to" of delete activities
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/pleroma/web/activity_pub/activity_pub.ex | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/lib/pleroma/web/activity_pub/activity_pub.ex b/lib/pleroma/web/activity_pub/activity_pub.ex index 8d3116839..3650d330a 100644 --- a/lib/pleroma/web/activity_pub/activity_pub.ex +++ b/lib/pleroma/web/activity_pub/activity_pub.ex @@ -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), | 
