Fix: _collect_nodes() break if there are no child nodes
This commit is contained in:
parent
5622611abb
commit
a565b7f159
|
@ -3984,6 +3984,9 @@ def _collect_nodes(limit, sender, method_name, cacheable, params=None):
|
||||||
doc = sender._request(method_name, cacheable, params)
|
doc = sender._request(method_name, cacheable, params)
|
||||||
doc = cleanup_nodes(doc)
|
doc = cleanup_nodes(doc)
|
||||||
|
|
||||||
|
# break if there are no child nodes
|
||||||
|
if not doc.documentElement.childNodes:
|
||||||
|
break
|
||||||
main = doc.documentElement.childNodes[0]
|
main = doc.documentElement.childNodes[0]
|
||||||
|
|
||||||
if main.hasAttribute("totalPages"):
|
if main.hasAttribute("totalPages"):
|
||||||
|
|
Loading…
Reference in a new issue