Skip to content

Commit d6c1912

Browse files
committed
repair seasonvar addon
1 parent d983715 commit d6c1912

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

addons/plugin.video.dandy.seasonvar.ru/addon.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
22
<addon id="plugin.video.dandy.seasonvar.ru" name="seasonvar.ru"
3-
version="2.0.8" provider-name="dandy">
3+
version="2.0.9" provider-name="dandy">
44
<requires>
55
<import addon="xbmc.python" version="3.0.0"/>
66
<import addon="script.module.xbmc.helpers" version="3.0.0"/>

addons/plugin.video.dandy.seasonvar.ru/default.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,7 @@ def getItemsByDate(self, page):
308308
link = urls[i]
309309
uri = sys.argv[0] + '?mode=show&url=%s&title=%s&wm=0' % (self.url + link, title)
310310
image = self.getSerialImage(self.url + link)
311+
311312
item = xbmcgui.ListItem(title_)
312313
item.setArt({'thumb': image, 'icon': image})
313314
item.setInfo(type='Video', infoLabels={'title': title_})
@@ -494,7 +495,7 @@ def parseSidebar(self, content):
494495
sidebar_item = {
495496
"title": title,
496497
"title_full": title_,
497-
"image": common.parseDOM(item, "img", ret="src")[0],
498+
"image": "http://" + common.parseDOM(item, "img", ret="src")[0],
498499
"link": self.url + urls[i]
499500
}
500501

0 commit comments

Comments
 (0)