Revert existing object check
This commit is contained in:
parent
28d5b40d0a
commit
6a69ece437
1 changed files with 2 additions and 8 deletions
|
@ -311,14 +311,8 @@ def delete(%Object{data: %{"id" => id, "actor" => actor}} = object, local \\ tru
|
|||
user = User.get_cached_by_ap_id(actor)
|
||||
|
||||
to =
|
||||
case Object.get_cached_by_ap_id(id) do
|
||||
nil ->
|
||||
[user.follower_address, "https://www.w3.org/ns/activitystreams#Public"]
|
||||
|
||||
object ->
|
||||
object.data["to"] || [] ++ object.data["cc"] ||
|
||||
[] ++ [user.follower_address, "https://www.w3.org/ns/activitystreams#Public"]
|
||||
end
|
||||
object.data["to"] || [] ++ object.data["cc"] ||
|
||||
[] ++ [user.follower_address, "https://www.w3.org/ns/activitystreams#Public"]
|
||||
|
||||
data = %{
|
||||
"type" => "Delete",
|
||||
|
|
Loading…
Reference in a new issue