When automatic search or manual, provider "podnapisi" returns no results even if subtitles do exists.
To Reproduce
Steps to reproduce the behavior (example on movie: Pirates of the Caribbean: At World's End):
- Go to Settings -> Providers -> Add provider Podnapisi (Verifiy SSL does not affect the bug)
- Go to Settings -> Languages -> Add New Profile -> Name: Slovenian -> Add Language -> Slovenian (Normal)
- Go to Movies -> Pirates of the Caribbean: At World's End -> Edit Movie -> Languages Profile: Slovenian
- Go to Movies -> Pirates of the Caribbean: At World's End -> Manual -> Search
- No result
Expected behavior
To return/show existing subtitles.
Screenshots
Bazaar result:

Podnapisi website result:

XML result from query method in PodnapisiProvider:

Software (please complete the following information):
Additional context
Posnapisi API returns only 1 result, even if there are multiple results. Most likely different issue/not part of this issue.
Fix
Fix:
In file: bazarr > custom_libs > subliminal_patch > providers > podnapisi.py
Line: 212
xml.find() is missing .text
line without fix:
if not xml.find('pagination/results') or not int(xml.find('pagination/results').text):
line with fix:
if not xml.find('pagination/results').text or not int(xml.find('pagination/results').text):
When automatic search or manual, provider "podnapisi" returns no results even if subtitles do exists.
To Reproduce
Steps to reproduce the behavior (example on movie: Pirates of the Caribbean: At World's End):
Expected behavior
To return/show existing subtitles.
Screenshots

Bazaar result:
Podnapisi website result:

XML result from query method in PodnapisiProvider:

Software (please complete the following information):
Additional context
Posnapisi API returns only 1 result, even if there are multiple results. Most likely different issue/not part of this issue.
Fix
Fix:
In file: bazarr > custom_libs > subliminal_patch > providers > podnapisi.py
Line: 212
xml.find() is missing .text
line without fix:
if not xml.find('pagination/results') or not int(xml.find('pagination/results').text):
line with fix:
if not xml.find('pagination/results').text or not int(xml.find('pagination/results').text):