diff --git a/channelselector.py b/channelselector.py index 9f277617..4bcc9aae 100644 --- a/channelselector.py +++ b/channelselector.py @@ -281,8 +281,7 @@ def thumb(item_or_itemlist=None, genre=False, live=False, thumb=''): if live: if type(item_or_itemlist) == list: for item in item_or_itemlist: - item.thumbnail = 'H:\\Desktop Tomas\\KOD\\media\\live\\'+ item.fulltitle.lower().replace(' ','_') + '.png' - # item.thumbnail = "https://raw.githubusercontent.com/kodiondemand/media/master/live/" + item.fulltitle.lower().replace(' ','_') + '.png' + item.thumbnail = "https://raw.githubusercontent.com/kodiondemand/media/master/live/" + item.fulltitle.lower().replace(' ','_') + '.png' else: item_or_itemlist.thumbnail = "https://raw.githubusercontent.com/kodiondemand/media/master/live/" + item.fulltitle.lower().replace(' ','_') + '.png' return item_or_itemlist