Open uowiec opened 3 years ago
Thank you for reporting this issue, I've tested on latest Kodi (19 final)
Looks like there some issue with the zip extraction method, it doesn't work for movies nor tv-shows
@uowiec what version of kodi & plugin do you use?
@uowiec what version of kodi & plugin do you use?
Kodi on Ubuntu: 2:18.9+git20201024.0821-final-0bionic plugin: service.subtitles.napisy24pl v2.0.3 plugin: script.module.beautifulsoup4 v4.6.2
When searching for any movie subtitles I get:
This is probably caused because the BS returns
<br/>
(the xhtml style closing tag) istead of the<br>
as originally returned from server in line:column2 = "".join([str(x) for x in column2.contents])
Possible solution would be:205: column2 = [x.strip() for x in filter(None, column2.split("<br/>"))]
or configure BS to force single tags closing style (fix the content to either<br>
or<br/>
)