From c2faae70dfc138efbeb3edccf97c22c2546a665a Mon Sep 17 00:00:00 2001
From: Karen Konou <konoukaren@gmail.com>
Date: Thu, 7 Mar 2019 12:26:03 +0100
Subject: [PATCH] Adjust delete activity audience to match the deleted object

---
 lib/pleroma/web/activity_pub/activity_pub.ex | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/lib/pleroma/web/activity_pub/activity_pub.ex b/lib/pleroma/web/activity_pub/activity_pub.ex
index 98639883e..adb42b9ab 100644
--- a/lib/pleroma/web/activity_pub/activity_pub.ex
+++ b/lib/pleroma/web/activity_pub/activity_pub.ex
@@ -309,16 +309,13 @@ def unfollow(follower, followed, activity_id \\ nil, local \\ true) 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"]
+    to = object.data["to"] || [] ++ object.data["cc"] || []
 
     data = %{
       "type" => "Delete",
       "actor" => actor,
       "object" => id,
-      "to" => Enum.uniq(to)
+      "to" => to
     }
 
     with {:ok, _} <- Object.delete(object),