instanceinfo: fix Misskey number of users

This commit is contained in:
tastytea 2022-05-25 21:51:42 +02:00
parent 3b576f2e8d
commit 4bf394497a
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ function parse_misskey()
[[ "${email}" != "null" ]] && echo "E-Mail: ${email}"
# shellcheck disable=SC2155
local users=$(${mycurl} -X POST "https://${instance}/api/stats" | jq -r ".usersCount")
local users=$(${mycurl} -X POST "https://${instance}/api/stats" | jq -r ".originalUsersCount")
[[ ${users} != "null" ]] && echo "Number of users: ${users}"
echo -n "Open registrations: "