Stats: Use invisible property for filtering.

This commit is contained in:
lain 2020-04-22 19:02:22 +02:00
commit f5bda09de6
2 changed files with 1 additions and 3 deletions

View file

@ -82,8 +82,7 @@ defmodule Pleroma.Stats do
where: u.deactivated != true,
where: u.local == true,
where: not is_nil(u.nickname),
where: fragment("? not like 'internal.%'", u.nickname),
where: fragment("? not like '%/relay'", u.ap_id)
where: not u.invisible
)
user_count = Repo.aggregate(users_query, :count, :id)