fix debug info

This commit is contained in:
neil 2020-09-14 22:29:23 +08:00 committed by Ed Lynes
parent 576a146ed2
commit 85736d697c
1 changed files with 4 additions and 2 deletions

View File

@ -120,11 +120,13 @@ _duckdns_rest() {
# DuckDNS uses GET to update domain info
if [ "$method" = "GET" ]; then
response="$(_get "$url")"
_debug2 response "$response"
if [ "$DEBUG" -gt 0 ] && _contains "$response" "UPDATED" && _contains "$response" "OK"; then
response="OK"
fi
else
_err "Unsupported method"
return 1
fi
_debug2 response "$response"
return 0
}