Add localPosts count, also set to 0 if null

This commit is contained in:
Dashie 2018-05-02 22:36:19 +02:00
parent abeb009acc
commit b8789cc8b6
No known key found for this signature in database
GPG Key ID: C2D57B325840B755
1 changed files with 3 additions and 2 deletions

View File

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