Browse Source

Reflect recent Variomedia API changes

Spaces were recently removed from the JSON "response" returned by Variomedia's API.
pull/3031/head
peterkelm 4 years ago
committed by GitHub
parent
commit
f02af8d481
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      dnsapi/dns_variomedia.sh

2
dnsapi/dns_variomedia.sh

@ -107,7 +107,7 @@ _get_root() {
fi
if _startswith "$response" "\{\"data\":"; then
if _contains "$response" "\"id\": \"$h\""; then
if _contains "$response" "\"id\":\"$h\""; then
_sub_domain="$(echo "$fulldomain" | sed "s/\\.$h\$//")"
_domain=$h
return 0

Loading…
Cancel
Save