mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-21 23:32:31 +00:00
Fixed Podnapisi not returning any subtitles
This commit is contained in:
parent
ee622e64b4
commit
74f2c66464
1 changed files with 1 additions and 1 deletions
|
@ -209,7 +209,7 @@ class PodnapisiProvider(_PodnapisiProvider, ProviderSubtitleArchiveMixin):
|
|||
break
|
||||
|
||||
# exit if no results
|
||||
if not xml.find('pagination/results') or not int(xml.find('pagination/results').text):
|
||||
if 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