Browse Source

fix comparison on empty var

Vlad Roskov 7 years ago
parent
commit
c58465d630
1 changed files with 1 additions and 1 deletions
  1. 1 1
      dnsapi/dns_yandex.sh

+ 1 - 1
dnsapi/dns_yandex.sh

@@ -54,7 +54,7 @@ _PDD_get_domain() {
     _debug2 "res1" "$res1"
     __found="$(echo "$res1" | sed -n -e 's#.* "found": \([^,]*\),.*#\1#p')"
     _debug "found: $__found results on page"
-    if [ "$__found" -lt 20 ]; then
+    if [ "0$__found" -lt 20 ]; then
       _debug "last page: $__page"
       __last=1
     fi