We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3dbdf1 commit b02e209Copy full SHA for b02e209
2 files changed
addon.xml
@@ -1,5 +1,5 @@
1
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
-<addon id="script.module.python-twitch" name="python-twitch for Kodi" version="1.0.0~alpha1" provider-name="A Talented Community">
+<addon id="script.module.python.twitch" name="python-twitch for Kodi" version="1.0.0~alpha1" provider-name="A Talented Community">
3
<requires>
4
<import addon="xbmc.python" version="2.1.0"/>
5
<import addon="script.module.six" version="1.9.0"/>
resources/lib/twitch/parser.py
@@ -4,7 +4,7 @@
from twitch.logging import log
6
_m3u_pattern = re.compile(
7
- r'#EXT-X-MEDIA:.*'
+ r'#EXT-X-MEDIA:TYPE=VIDEO.*'
8
r'GROUP-ID="(?P<group_id>.\w*)",'
9
r'NAME="(?P<group_name>\w*)"[,=\w]*\n'
10
r'#EXT-X-STREAM-INF:.*\n('
0 commit comments