Revert existing object check
This commit is contained in:
parent
28d5b40d0a
commit
6a69ece437
|
@ -311,14 +311,8 @@ def delete(%Object{data: %{"id" => id, "actor" => actor}} = object, local \\ tru
|
||||||
user = User.get_cached_by_ap_id(actor)
|
user = User.get_cached_by_ap_id(actor)
|
||||||
|
|
||||||
to =
|
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"] ||
|
object.data["to"] || [] ++ object.data["cc"] ||
|
||||||
[] ++ [user.follower_address, "https://www.w3.org/ns/activitystreams#Public"]
|
[] ++ [user.follower_address, "https://www.w3.org/ns/activitystreams#Public"]
|
||||||
end
|
|
||||||
|
|
||||||
data = %{
|
data = %{
|
||||||
"type" => "Delete",
|
"type" => "Delete",
|
||||||
|
|
Loading…
Reference in New Issue