Kodi Community Forum

Full Version: RTL Now 2.1 fix
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello everyone,

I'm not sure where to post this, because the official plugin site closed their comments, but the RTL Now video plugin stopped working tonight, because of an error in the regex.

Here's a tiny fix:

Code:
xbmc@pbox:~/.xbmc/addons/plugin.video.rtl.now$ diff default.py default.py.ORIG
180,183d179
<     
<     if not matchPic:
<         return ""
<     
280c276
<         ok = showVideo(newUrl, decode_htmlentities(urllib.unquote_plus(vidName)))
---
>         ok = showVideo(newUrl, decode_htmlentities(urllib.unquote_plus(vidName)))
\ No newline at end of file