Skip to content

Commit

Permalink
0.4.15: fix playback of livestreams
Browse files Browse the repository at this point in the history
  • Loading branch information
fayer3 committed Dec 20, 2020
1 parent d1f8cba commit f8db52c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion addon.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.joyn_app" name="Joyn" version="0.4.14" provider-name="fayer3">
<addon id="plugin.video.joyn_app" name="Joyn" version="0.4.15" provider-name="fayer3">
<requires>
<import addon="xbmc.python" version="2.25.0"/>
<import addon="script.module.routing" version="0.2.0"/>
Expand Down Expand Up @@ -76,6 +76,8 @@
- ändernder VOD Abfrage zu der vom Server erhaltenen, dies limitiert tie Auflösung auf SD ohne Plus+.
0.4.14:
- beheben von padding Fehler.
0.4.15:
- wiedergabe von livestreams behoben
</news>
<assets>
<icon>resources/icon.png</icon>
Expand Down
4 changes: 3 additions & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,6 @@ v0.4.12:
v0.4.13:
- change VOD request to the one received from the server, this limits playback in most cases to SD resolution without Plus+.
v0.4.14:
- fix padding error.
- fix padding error.
v0.4.15:
- fix playback of livestreams
2 changes: 1 addition & 1 deletion resources/lib/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -1097,7 +1097,7 @@ def play_live(stream_id, brand, _try=1):

video_url = video_data['videoUrl']
video_url_data = u''
if 'vmap'in video_data and video_data['vmap'] != None:
if 'vmap'in video_data and video_data['vmap']:
#got add, extract mpd
log(u'stream with add: {0}'.format(video_url))
#return
Expand Down

0 comments on commit f8db52c

Please sign in to comment.