_contains instead of echo

This commit is contained in:
Ivar Larsson 2018-03-21 11:19:22 -04:00
parent 5f9b0675e2
commit 8995d3434f
1 changed files with 2 additions and 2 deletions

View File

@ -187,7 +187,7 @@ _loopia_update_record() {
response="$(_post "$xml_content" "$LOOPIA_Api" "" "POST")"
if ! echo "$response" | grep "OK" >/dev/null; then
if ! _contains "$response" "OK"; then
_err "Error"
return 1
fi
@ -219,7 +219,7 @@ _loopia_add_record() {
response="$(_post "$xml_content" "$LOOPIA_Api" "" "POST")"
if ! echo "$response" | grep "OK" >/dev/null; then
if ! _contains "$response" "OK"; then
_err "Error"
return 1
fi