mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2025-01-21 21:49:23 +00:00
don't try indexing non-people
This commit is contained in:
parent
d5c8415496
commit
25920c10df
|
@ -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