2020-06-19, 09:55
(2020-05-26, 05:16)ininjapants Wrote:(2020-05-12, 21:43)Wanderer189 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.(2020-03-08, 03:43)barney63 Wrote: Are some users still having some issues, I still can't open programs from the guide. The screen just flickers for a second and then nothing happens.
I just installed today and I get this as well
the uepg can be fixed by modifying line 400 in resources/lib/plutotv.py:
from:
Code:
tmpdata['url'] = self.sysARG[0]+'?mode=9&name=%s&url=%s'%(title,urls)]
Code:
tmpdata['url'] = self.sysARG[0]+'?mode=9&name=%s&url=%s'%(title,urllib.parse.quote(urls))
Code:
urls
Code:
urllib.parse.quote(urls)
i've tried this fix and it works. can anyone else confirm?