Use proper deleted object for removing from index

This commit is contained in:
Ekaterina Vaartis 2021-10-12 19:34:57 +03:00
parent 95cb2bb694
commit cf558208c2
1 changed files with 1 additions and 1 deletions

View File

@ -330,7 +330,7 @@ def handle(%{data: %{"type" => "Delete", "object" => deleted_object}} = object,
if result == :ok do
Notification.create_notifications(object)
Pleroma.Search.remove_from_index(object)
Pleroma.Search.remove_from_index(deleted_object)
{:ok, object, meta}
else