Browse Source
Merge pull request #2863 from mod242/master
Filter out blank lines
pull/2866/head
neil
5 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_ddnss.sh
|
@ -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/<[a-zA-Z\/][^>]*>//g' | _tail_n 1)" |
|
|
|
|
|
|
|
|
response="$(_get "$url" | sed 's/<[a-zA-Z\/][^>]*>//g' | tr -s "\n" | _tail_n 1)" |
|
|
else |
|
|
else |
|
|
_err "Unsupported method" |
|
|
_err "Unsupported method" |
|
|
return 1 |
|
|
return 1 |
|
|