Skip to content

Commit d3877fb

Browse files
committed
changes see changelog.txt
1 parent 1d71ee4 commit d3877fb

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

addon.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2-
<addon id="plugin.audio.tunein2017" name="TuneIn2017" version="1.7.6+matrix" provider-name="rols1 (rols1@gmx.de)">
2+
<addon id="plugin.audio.tunein2017" name="TuneIn2017" version="1.7.8+matrix" provider-name="rols1 (rols1@gmx.de)">
33
<requires>
44
<import addon="xbmc.python" version="3.0.0"/>
55
<import addon="script.module.kodi-six" />

changelog.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ CHANGE HISTORY Kodi-Addon-TuneIn2017 (previosly plugin for Plexmediaserver)
66
https://www.kodinerds.net/index.php/Thread/66559-RELEASE-Kodi-Addon-TuneIn2017
77
Plex-Forum:
88
https://forums.plex.tv/discussion/288260/rel-tunein2017
9-
9+
10+
09.03.2025 1.7.8 StreamTests: string handling for None value in ret.get('error')
11+
1012
09.03.2025 1.7.7 in rare cases Python's urllib library produces an SLL error, although
1113
the Kodi player can play the stream. In these cases, the addon skips the redirect
1214
check and the evaluation of the meta data and passes the stream unchanged to the

tunein2017.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545

4646
# +++++ TuneIn2017 - Addon Kodi-Version, migriert von der Plexmediaserver-Version +++++
4747

48-
VERSION = '1.7.7'
48+
VERSION = '1.7.8'
4949
VDATE = '09.03.2025'
5050

5151
#
@@ -1637,8 +1637,7 @@ def StreamTests(url_list,summ_org):
16371637
url = '%s/;' % url
16381638
PLog('url_add_semicol3')
16391639

1640-
1641-
if "use_url_org" in ret.get('error'): # eror durchgewinkt in getStreamMeta
1640+
if "use_url_org" in str(ret.get('error')): # eror durchgewinkt in getStreamMeta
16421641
PLog("use_url_org: %s not %s" % (url_org, url))
16431642
url = url_org
16441643

0 commit comments

Comments
 (0)