Skip to content

Commit

Permalink
0.12.1 - fixed schedule error (serviceapi) #102
Browse files Browse the repository at this point in the history
  • Loading branch information
s0faking committed May 3, 2021
1 parent edf8a4f commit b3c4898
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" standalone="yes"?>
<addon id="plugin.video.orftvthek" name="ORF TVthek" version="0.12.0" provider-name="sofaking">
<addon id="plugin.video.orftvthek" name="ORF TVthek" version="0.12.1" provider-name="sofaking">
<requires>
<import addon="xbmc.python" version="2.14.0"/>
<import addon="script.module.future" version="0.17.1"/>
Expand Down
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
* 0.12.1
- fixed schedule error (serviceapi) #102

* 0.12.0
- added drm livestream playback

Expand Down
2 changes: 1 addition & 1 deletion resources/lib/ServiceApi.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ def getSchedule(self):
title = '%s' % (date.strftime('%A, %d.%m.%Y'))
parameters = {'mode': 'openDate', 'link': date.strftime('%Y-%m-%d')}
if x == 8:
title = '$s %s' % (self.translation(30064), title)
title = '%s %s' % (self.translation(30064), title)
parameters = {'mode': 'openDate', 'link': date.strftime('%Y-%m-%d'), 'from': (date - datetime.timedelta(days=150)).strftime('%Y-%m-%d')}
u = build_kodi_url(parameters)
createListItem(title, None, None, None, date.strftime('%Y-%m-%d'), '', u, False, True, self.defaultbackdrop, self.pluginhandle)
Expand Down

0 comments on commit b3c4898

Please sign in to comment.