Skip to content
This repository has been archived by the owner on Jul 8, 2020. It is now read-only.

Commit

Permalink
Merge pull request #4 from AlleSchonWeg/AllSports
Browse files Browse the repository at this point in the history
Fix guids in AllSports-Soccer
  • Loading branch information
AlleSchonWeg authored Mar 23, 2020
2 parents c28b9f8 + 88c90a4 commit 17d8935
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions 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.dazn" version="1.4.0" name="DAZN" provider-name="Jin">
<addon id="plugin.video.dazn" version="1.4.1" name="DAZN" provider-name="Jin">
<requires>
<import addon="xbmc.python" version="2.26.0"/>
<import addon="script.module.inputstreamhelper" version="0.4.2"/>
Expand All @@ -12,7 +12,7 @@
<extension point="xbmc.addon.metadata">
<reuselanguageinvoker>true</reuselanguageinvoker>
<news>
- Python 3 compatibility. Thx @Goommer
- Fix GUIDS in All Sports Menu
</news>
<assets>
<icon>resources/icon.png</icon>
Expand Down
2 changes: 1 addition & 1 deletion resources/lib/rails.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def __init__(self, plugin, i):
self.item['id'] = id_
self.item['plot'] = id_
if self.plugin.is_valid_uuid(id_):
rail = Client(self.plugin).rail(id_)
rail = Client(self.plugin).rail(id_, i.get('Params', ''))
self.item['title'] = self.plugin.utfenc(rail.get('Title', False))
self.item['plot'] = self.item['title']
else:
Expand Down

0 comments on commit 17d8935

Please sign in to comment.