forked from AkkomaGang/akkoma
don't try indexing non-people
This commit is contained in:
parent
ccc5c59c50
commit
93e41df75d
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ def maybe_put_into_elasticsearch(
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def maybe_put_into_elasticsearch(%User{} = user) do
|
def maybe_put_into_elasticsearch(%User{actor_type: "Person"} = user) do
|
||||||
if enabled?() do
|
if enabled?() do
|
||||||
put(user)
|
put(user)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue