diff --git a/channels/vvvvid.py b/channels/vvvvid.py index d4ef68ec..ab9857b6 100644 --- a/channels/vvvvid.py +++ b/channels/vvvvid.py @@ -164,7 +164,7 @@ def findvideos(item): url= 'https://or01.top-ix.org/videomg/_definst_/mp4:' + item.url + '/' + url, server= 'directo') ) - return support.server(item, itemlist=itemlist, download=False) + return support.server(item, itemlist=itemlist, down_load=False) def make_itemlist(itemlist, item, data): search = item.search if item.search else '' @@ -185,7 +185,6 @@ def make_itemlist(itemlist, item, data): contentType = item.contentType, contentSerieName= key['title'] if item.contentType != 'movie' else '', contentTitle= key['title'] if item.contentType == 'movie' else '', - thumbnail= key['thumbnail'], infoLabels=infoLabels )) return itemlist \ No newline at end of file diff --git a/core/support.py b/core/support.py index c20939f6..b8baec02 100644 --- a/core/support.py +++ b/core/support.py @@ -879,7 +879,7 @@ def pagination(itemlist, item, page, perpage, function_level=1): thumbnail=thumb())) return itemlist -def server(item, data='', itemlist=[], headers='', AutoPlay=True, CheckLinks=True):#, down_load=True): +def server(item, data='', itemlist=[], headers='', AutoPlay=True, CheckLinks=True, down_load=True): if not data: data = httptools.downloadpage(item.url, headers=headers, ignore_response_code=True).data @@ -897,7 +897,7 @@ def server(item, data='', itemlist=[], headers='', AutoPlay=True, CheckLinks=Tru videoitem.channel = item.channel videoitem.contentType = item.contentType - return controls(itemlist, item, AutoPlay, CheckLinks) + return controls(itemlist, item, AutoPlay, CheckLinks, down_load) def controls(itemlist, item, AutoPlay=True, CheckLinks=True, down_load=True): from core import jsontools