1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2025-04-05 20:13:00 +02:00

fix: use ipv4

This commit is contained in:
aclist 2023-10-29 11:20:43 +09:00
parent 2106e4d4dc
commit 2368544dc1
2 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -o pipefail set -o pipefail
version=3.3.16 version=3.3.17
aid=221100 aid=221100
game="dayz" game="dayz"
@ -1298,7 +1298,7 @@ local_latlon(){
if [[ -z $(command -v dig) ]]; then if [[ -z $(command -v dig) ]]; then
local local_ip=$(curl -Ls "https://ipecho.net/plain") local local_ip=$(curl -Ls "https://ipecho.net/plain")
else else
local local_ip=$(dig +short myip.opendns.com @resolver1.opendns.com) local local_ip=$(dig -4 +short myip.opendns.com @resolver1.opendns.com)
fi fi
local url="http://ip-api.com/json/$local_ip" local url="http://ip-api.com/json/$local_ip"
local res=$(curl -Ls "$url" | jq -r '"\(.lat),\(.lon)"') local res=$(curl -Ls "$url" | jq -r '"\(.lat),\(.lon)"')

2
news
View file

@ -1 +1 @@
NEWS: If you are using Fedora 38, please update to zenity-3.99.1-1 to use DZGUI. NEWS: Fix: use IPV4 when polling server coordinates