2020-09-06, 18:41
(2020-09-06, 18:17)K5j%EhD55 Wrote:My issue was not the guide not working. The guide worked fine except when you tried to open a program from it. Is this the fix for opening a program or a fix to get the guide to appear and show on screen.(2020-06-19, 09:55)lwrcase Wrote:(2020-05-26, 05:16)ininjapants Wrote: the program guide has been a problem for a while. We have been waiting patiently for developer to update. I have been grateful for everything he has developed on kodi and will continue to wait for that update.
the uepg can be fixed by modifying line 400 in resources/lib/plutotv.py:
from:
to:Code:tmpdata['url'] = self.sysARG[0]+'?mode=9&name=%s&url=%s'%(title,urls)]
wrappingCode:tmpdata['url'] = self.sysARG[0]+'?mode=9&name=%s&url=%s'%(title,urllib.parse.quote(urls))
withCode:urls
will allow the uepg to pass URL encoded urls to the plugin. the issue with the current plugin is that uepg will not encode the URL before passing it to the plugin and the URL passed to the plugin will become part of the plugin's URI arguments.Code:urllib.parse.quote(urls)
i've tried this fix and it works. can anyone else confirm?
Thank you for this fix. Makes the guide work again.