Add localPosts count, also set to 0 if null

stable
Dashie 6 years ago
parent abeb009acc
commit b8789cc8b6
No known key found for this signature in database
GPG Key ID: C2D57B325840B755

@ -36,8 +36,9 @@ defmodule Pleroma.Web.Nodeinfo.NodeinfoController do
openRegistrations: Keyword.get(@instance, :registrations_open), openRegistrations: Keyword.get(@instance, :registrations_open),
usage: %{ usage: %{
users: %{ users: %{
total: Stats.get_stats().user_count total: Stats.get_stats().user_count || 0
} },
localPosts: Stats.get_stats().status_count || 0
}, },
metadata: %{} metadata: %{}
} }

Loading…
Cancel
Save