v17 Unable to use any addons to download subtitles
#18
if you got the following error in kodi.log
Code:
ERROR: OnDownloadComplete - Saving of subtitle ........ xxxx.srt to xxxx.srt failed
in service.subtitles.subscene/service.py line 543 replace

Code:
for sub in subs:
        listitem = xbmcgui.ListItem(label=sub)

with
Code:
for sub in subs:
        sub = sub.replace('\\', '\\\\').replace('/', '//')
        listitem = xbmcgui.ListItem(label=sub)
Reply


Messages In This Thread
RE: Unable to use any addons to download subtitles - by ewwink - 2017-05-09, 07:15
Logout Mark Read Team Forum Stats Members Help
Unable to use any addons to download subtitles0