Don't try removing deleted users and such from index as posts

This commit is contained in:
Ekaterina Vaartis 2022-01-22 16:52:06 +03:00 committed by FloatingGhost
parent 7aebff799b
commit 7f53aa400b
2 changed files with 8 additions and 5 deletions

View File

@ -1,12 +1,12 @@
defmodule Pleroma.Search do
alias Pleroma.Workers.SearchIndexingWorker
def add_to_index(activity) do
SearchIndexingWorker.enqueue("add_to_index", %{"activity" => activity.id})
def add_to_index(%Pleroma.Activity{id: activity_id}) do
SearchIndexingWorker.enqueue("add_to_index", %{"activity" => activity_id})
end
def remove_from_index(object) do
SearchIndexingWorker.enqueue("remove_from_index", %{"object" => object.id})
def remove_from_index(%Pleroma.Object{id: object_id}) do
SearchIndexingWorker.enqueue("remove_from_index", %{"object" => object_id})
end
def search(query, options) do

View File

@ -325,7 +325,10 @@ defmodule Pleroma.Web.ActivityPub.SideEffects do
if result == :ok do
Notification.create_notifications(object)
Pleroma.Search.remove_from_index(deleted_object)
# Only remove from index when deleting actual objects, not users or anything else
with %Pleroma.Object{} <- deleted_object do
Pleroma.Search.remove_from_index(deleted_object)
end
{:ok, object, meta}
else