summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorenen92 <92enen@gmail.com>2018-01-07 14:00:32 +0000
committerMartijn Kaijser <martijn@xbmc.org>2018-01-07 15:43:14 +0100
commitdd412ea77868248458fe91923d975b31a7cdee87 (patch)
tree8323dfa406133b28ef9487e8833c9abf5b5aa571
parent0b7ffec3a5807df9ca57a0d4c67d5104199fc666 (diff)
[plugin.video.rtpplay] 3.0.3
-rw-r--r--plugin.video.rtpplay/addon.xml2
-rw-r--r--plugin.video.rtpplay/resources/lib/plugin.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/plugin.video.rtpplay/addon.xml b/plugin.video.rtpplay/addon.xml
index ee7d9b6..87f5065 100644
--- a/plugin.video.rtpplay/addon.xml
+++ b/plugin.video.rtpplay/addon.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
-<addon id="plugin.video.rtpplay" name="RTP Play" version="3.0.2" provider-name="enen92">
+<addon id="plugin.video.rtpplay" name="RTP Play" version="3.0.3" provider-name="enen92">
<requires>
<import addon="xbmc.python" version="2.25.0"/>
<import addon="script.module.routing" version="0.2.0"/>
diff --git a/plugin.video.rtpplay/resources/lib/plugin.py b/plugin.video.rtpplay/resources/lib/plugin.py
index 9149a4d..3ea0046 100644
--- a/plugin.video.rtpplay/resources/lib/plugin.py
+++ b/plugin.video.rtpplay/resources/lib/plugin.py
@@ -69,7 +69,7 @@ def play():
player = re.findall("liveMetadata.+?'(\d+)'\)", req)
player = player[0].strip() if player else ''
- streams = re.compile('var player{}.+?RTPPlayer.+?file\:.+?"(.+?)"'.format(player),re.DOTALL).findall(req)
+ streams = re.compile('{} =.+?RTPPlayer.+?file\:.+?"(.+?)"'.format(player),re.DOTALL).findall(req)
if streams:
final_stream_url = None