Browse Source

use different method to get root

pull/2662/head
Tambet Liiv 4 years ago
parent
commit
b59b0f0386
  1. 4
      dnsapi/dns_zone.sh

4
dnsapi/dns_zone.sh

@ -136,10 +136,10 @@ _get_root() {
if [ -z "$h" ]; then
return 1
fi
if ! _zone_rest GET "dns/$h/a"; then
if ! _zone_rest GET "dns/$h"; then
return 1
fi
if _contains "$response" "\"name\":\"$h\"" >/dev/null; then
if _contains "$response" "\"identificator\":\"$h\"" >/dev/null; then
_domain=$h
return 0
fi

Loading…
Cancel
Save