浏览代码

fix debug info

neil 5 年之前
父节点
当前提交
db24ca3dc1
共有 1 个文件被更改,包括 4 次插入2 次删除
  1. 4 2
      dnsapi/dns_duckdns.sh

+ 4 - 2
dnsapi/dns_duckdns.sh

@@ -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
 }