Unverified Commit 625c8529 authored by neil's avatar neil Committed by GitHub
Browse files

Merge pull request #2236 from mod242/master

Correct parsing error in sed
parents b28835a6 d7be2c5b
...@@ -119,7 +119,7 @@ _ddnss_rest() { ...@@ -119,7 +119,7 @@ _ddnss_rest() {
# DDNSS uses GET to update domain info # DDNSS uses GET to update domain info
if [ "$method" = "GET" ]; then if [ "$method" = "GET" ]; then
response="$(_get "$url" | sed 's/<[^>]*>//g;/</N;//ba' | _tail_n 1)" response="$(_get "$url" | sed 's/<[a-zA-Z\/][^>]*>//g' | _tail_n 1)"
else else
_err "Unsupported method" _err "Unsupported method"
return 1 return 1
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment