diff --git a/lgsm/functions/alert_discord.sh b/lgsm/functions/alert_discord.sh index bf99d5f2c..708d5e0ae 100755 --- a/lgsm/functions/alert_discord.sh +++ b/lgsm/functions/alert_discord.sh @@ -25,8 +25,9 @@ json=$(cat </dev/null| grep Speed | awk '{print $2 # External IP address if [ -z "${extip}" ]; then - extip="$(curl --connect-timeout 10 -s https://api.ipify.org 2>/dev/null)" + ipapijson=$(curl --connect-timeout 10 -s http://ip-api.com/json) + extip="$(echo "${ipapijson}" | jq -r .query)" + country="$(echo "${ipapijson}" | jq -r .country)" exitcode=$? # Should ifconfig.co return an error will use last known IP. if [ ${exitcode} -eq 0 ]; then