mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
These two values are expected to be integers
This commit is contained in:
parent
e1f7ae655f
commit
8dd840f7d5
1 changed files with 2 additions and 2 deletions
|
@ -56,10 +56,10 @@ class Nodeinfo {
|
|||
'version' => config('pixelfed.version'),
|
||||
],
|
||||
'usage' => [
|
||||
'localPosts' => $statuses,
|
||||
'localPosts' => (int) $statuses,
|
||||
'localComments' => 0,
|
||||
'users' => [
|
||||
'total' => $users,
|
||||
'total' => (int) $users,
|
||||
'activeHalfyear' => (int) $activeHalfYear,
|
||||
'activeMonth' => (int) $activeMonth,
|
||||
],
|
||||
|
|
Loading…
Reference in a new issue