Browse Source
Merge pull request #3529 from Haarolean/bugfix/porkbun-fixes
Porkbun DNS API fixes
pull/3534/head
neil
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
dnsapi/dns_porkbun.sh
|
@ -110,8 +110,8 @@ _get_root() { |
|
|
|
|
|
|
|
|
if _porkbun_rest POST "dns/retrieve/$h"; then |
|
|
if _porkbun_rest POST "dns/retrieve/$h"; then |
|
|
if _contains "$response" "\"status\":\"SUCCESS\""; then |
|
|
if _contains "$response" "\"status\":\"SUCCESS\""; then |
|
|
_sub_domain="$(echo "$fulldomain" | sed "s/\\.$_domain\$//")" |
|
|
|
|
|
_domain=$h |
|
|
_domain=$h |
|
|
|
|
|
_sub_domain="$(echo "$fulldomain" | sed "s/\\.$_domain\$//")" |
|
|
return 0 |
|
|
return 0 |
|
|
else |
|
|
else |
|
|
_debug "Go to next level of $_domain" |
|
|
_debug "Go to next level of $_domain" |
|
|