Skip to content
This repository has been archived by the owner on Sep 4, 2019. It is now read-only.

Commit

Permalink
fix broken addon start caused by changed server data, closes #9
Browse files Browse the repository at this point in the history
  • Loading branch information
hubsif committed Oct 13, 2016
1 parent ff3858d commit 1f1b805
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 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"?>
<addon id="plugin.video.tk_bbl" name="Telekom Basketball" version="1.1.2" provider-name="hubsif">
<addon id="plugin.video.tk_bbl" name="Telekom Basketball" version="1.1.3" provider-name="hubsif">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
</requires>
Expand Down
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
1.1.3 (2016/10/13)
- fix broken addon start caused by changed server data

1.1.2 (2016/09/30)
- fix login url
- fix display of live games in main menu
Expand Down
2 changes: 1 addition & 1 deletion default.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def build_url(query):

def get_current(json):
if 'isCurrent' in json and json['isCurrent'] == 'true':
if json['children']:
if json.has_key('children'):
for child in json['children']:
result = get_current(child)
if result:
Expand Down

0 comments on commit 1f1b805

Please sign in to comment.