mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2025-01-03 13:49:02 +00:00
don't try indexing non-people
This commit is contained in:
parent
ccc5c59c50
commit
93e41df75d
|
@ -35,7 +35,7 @@ defmodule Pleroma.Elasticsearch do
|
|||
end
|
||||
end
|
||||
|
||||
def maybe_put_into_elasticsearch(%User{} = user) do
|
||||
def maybe_put_into_elasticsearch(%User{actor_type: "Person"} = user) do
|
||||
if enabled?() do
|
||||
put(user)
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue