instanceinfo.sh: Improved Mastodon fork detection.

This commit is contained in:
tastytea 2019-07-15 17:19:25 +02:00
parent 2ba49d8fb9
commit 5865c6ecb4
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-15_1
# Version: 2019-07-15_2
if [[ -z "${1}" ]]; then
echo "usage: ${0} DOMAIN" >&2
@ -107,7 +107,7 @@ function main()
implementation="Florence"
elif grep -Eq '"version":"[0-9]+\.[0-9]+\.[0-9]+"' <<<"${json}"; then
implementation="Mastodon"
elif grep -Eq '"version":"[0-9]+\.[0-9]+\.[0-9a-zA-Z]+"' <<<"${json}"; then
elif grep -Eq '"version":"[0-9]+\.[0-9]+\.[0-9][\._\-]?[a-zA-Z]+"' <<<"${json}"; then
implementation="Mastodon fork"
fi
if [[ -n "${implementation}" ]]; then