diff --git a/back/lib/ips_to_peers b/back/lib/ips_to_peers index 1157108..67f40c6 100755 --- a/back/lib/ips_to_peers +++ b/back/lib/ips_to_peers @@ -25,7 +25,7 @@ while IFS= read -r line; do ipv4="${ipv4%%/*}" ipv6="${ipv6%%/*}" rev_ipv4="$(/usr/lib/wagon/ns_update_rev_ipv4 ${ipv4})" - domain="$(<<<"${res}" grep "^${rev_ipv4} name = " | cut -f1 | cut -d' ' -f3 | sed 's/\.$//')" + domain="$(<<<"${res}" grep "^${rev_ipv4} name = " | cut -f2 | cut -d' ' -f3 | sed 's/\.$//')" case "${format}" in 'json') printf '{"domain":"%s","ipv4":"%s","ipv6":"%s","pubkey":"%s"},' \ "${domain}" "${ipv4}" "${ipv6}" "${pubkey}";;