instanceinfo.sh: Don't print Mastodon-admin if it is null.

This commit is contained in:
tastytea 2019-07-26 23:24:20 +02:00
parent 659ea46373
commit 68bb500ae9
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
#!/bin/bash
# Print some basic info about fediverse instances.
# Version: 2019-07-23_2
# Version: 2019-07-26_1
if [[ -z "${1}" ]]; then
echo "usage: ${0} DOMAIN" >&2
@ -122,7 +122,7 @@ function parse_mastodon()
# shellcheck disable=SC2155
local admin=$(jq -r ".contact_account.acct" <<<"${json}")
[[ -n "${admin}" ]] && echo "Admin: https://${instance}/users/${admin}"
[[ "${admin}" != "null" ]] && echo "Admin: https://${instance}/users/${admin}"
# shellcheck disable=SC2155
local email=$(jq -r ".email" <<<"${json}")