Browse Source
Merge pull request #3593 from jonwltn/fix-dnspod
Fix the URL for checking DNSPod availability.
pull/3601/head
neil
3 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
-
acme.sh
|
@ -3925,7 +3925,7 @@ _ns_lookup_ali() { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
_ns_is_available_dp() { |
|
|
_ns_is_available_dp() { |
|
|
if _get "https://dns.alidns.com" "" 1 >/dev/null 2>&1; then |
|
|
|
|
|
|
|
|
if _get "https://doh.pub" "" 1 >/dev/null 2>&1; then |
|
|
return 0 |
|
|
return 0 |
|
|
else |
|
|
else |
|
|
return 1 |
|
|
return 1 |
|
|