mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-21 23:32:31 +00:00
Fixed podnapisi AttributeError
This commit is contained in:
parent
4e365c6aa6
commit
f6c5ee6bfc
1 changed files with 2 additions and 1 deletions
|
@ -209,7 +209,8 @@ class PodnapisiProvider(_PodnapisiProvider, ProviderSubtitleArchiveMixin):
|
|||
break
|
||||
|
||||
# exit if no results
|
||||
if not xml.find('pagination/results').text or not int(xml.find('pagination/results').text):
|
||||
if (not xml.find('pagination/results') or not xml.find('pagination/results').text or not
|
||||
int(xml.find('pagination/results').text)):
|
||||
logger.debug('No subtitles found')
|
||||
break
|
||||
|
||||
|
|
Loading…
Reference in a new issue