Browse Source
Merge pull request #3541 from DerVerruckteFuchs/dns_1984hosting_add()-fix
fix dns_1984hosting_add() so checks for HTML responses actually find HTML responses
pull/3552/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_1984hosting.sh
|
@ -59,7 +59,7 @@ dns_1984hosting_add() { |
|
|
if _contains "$response" '"haserrors": true'; then |
|
|
if _contains "$response" '"haserrors": true'; then |
|
|
_err "1984Hosting failed to add TXT record for $_sub_domain bad RC from _post" |
|
|
_err "1984Hosting failed to add TXT record for $_sub_domain bad RC from _post" |
|
|
return 1 |
|
|
return 1 |
|
|
elif _contains "$response" "<html>"; then |
|
|
|
|
|
|
|
|
elif _contains "$response" "html>"; then |
|
|
_err "1984Hosting failed to add TXT record for $_sub_domain. Check $HTTP_HEADER file" |
|
|
_err "1984Hosting failed to add TXT record for $_sub_domain. Check $HTTP_HEADER file" |
|
|
return 1 |
|
|
return 1 |
|
|
elif _contains "$response" '"auth": false'; then |
|
|
elif _contains "$response" '"auth": false'; then |
|
|