X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=lib%2Fpleroma%2Fstats.ex;h=6b3a8a41f738801e8ffc0817d066cd3212d0ef74;hb=61ea8f1f5a8956ee25f8ef89af709db6011fd659;hp=6763786a7696a8a7a09332e1585fd8a345446a25;hpb=8b88e2a6e2b3a777ca99bf94676ab47f2d4cc0ea;p=akkoma diff --git a/lib/pleroma/stats.ex b/lib/pleroma/stats.ex index 6763786a7..6b3a8a41f 100644 --- a/lib/pleroma/stats.ex +++ b/lib/pleroma/stats.ex @@ -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) @@ -92,7 +91,7 @@ defmodule Pleroma.Stats do peers: peers, stats: %{ domain_count: domain_count, - status_count: status_count, + status_count: status_count || 0, user_count: user_count } }