forked from AkkomaGang/akkoma
Don't try removing deleted users and such from index as posts
This commit is contained in:
parent
7aebff799b
commit
7f53aa400b
2 changed files with 8 additions and 5 deletions
|
@ -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
|
||||
|
|
|
@ -325,7 +325,10 @@ def handle(%{data: %{"type" => "Delete", "object" => deleted_object}} = object,
|
|||
if result == :ok do
|
||||
Notification.create_notifications(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
|
||||
|
|
Loading…
Reference in a new issue