From ca243ef9996f70b3920d9a8be489d129cb68e756 Mon Sep 17 00:00:00 2001 From: Alhaziel01 Date: Wed, 20 May 2020 17:09:32 +0200 Subject: [PATCH] Alcuni Fix --- channels/dreamsub.py | 2 +- channels/ilcorsaronero.py | 4 ++-- channels/metalvideo.py | 2 +- channels/raiplay.py | 2 +- channels/vvvvid.py | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/channels/dreamsub.py b/channels/dreamsub.py index 7fdc5c35..b05a0a11 100644 --- a/channels/dreamsub.py +++ b/channels/dreamsub.py @@ -137,7 +137,7 @@ def findvideos(item): language = 'ITA' if 'sub' in lang.lower(): language = 'Sub-' + language - quality = url.split('/')[-1] + quality = url.split('/')[-1].split('?')[0] itemlist.append( support.Item(channel=item.channel, diff --git a/channels/ilcorsaronero.py b/channels/ilcorsaronero.py index 39941c7d..19f9a82b 100644 --- a/channels/ilcorsaronero.py +++ b/channels/ilcorsaronero.py @@ -93,5 +93,5 @@ def search(item, text): def findvideos(item): if item.contentType == 'tvshow': item.contentType = 'episode' - video_library = True if 'movie' in item.args else False - return support.server(item, support.match(item.url, patron=r'"(magnet[^"]+)').match, video_library=video_library) + Videolibrary = True if 'movie' in item.args else False + return support.server(item, support.match(item.url, patron=r'"(magnet[^"]+)').match, Videolibrary=Videolibrary) diff --git a/channels/metalvideo.py b/channels/metalvideo.py index 823bc40e..9094ac47 100644 --- a/channels/metalvideo.py +++ b/channels/metalvideo.py @@ -50,7 +50,7 @@ def peliculas(item): def findvideos(item): - return support.server(item, video_library=False) + return support.server(item, Videolibrary=False) def search(item, text): diff --git a/channels/raiplay.py b/channels/raiplay.py index c397e563..6f64a539 100644 --- a/channels/raiplay.py +++ b/channels/raiplay.py @@ -292,7 +292,7 @@ def findvideos(item): itemlist.append(support.Item(channel = item.channel, server = 'directo', title = 'Diretto', fulltitle = item.fulltitle, show = item.show, thumbnail = item.thumbnail, fanart = item.json, url = getUrl(url), action = 'play' )) - return support.server(item, itemlist=itemlist, down_load=False) + return support.server(item, itemlist=itemlist, Download=False) def getUrl(pathId): diff --git a/channels/vvvvid.py b/channels/vvvvid.py index 9416fbf1..5a431604 100644 --- a/channels/vvvvid.py +++ b/channels/vvvvid.py @@ -209,7 +209,7 @@ def findvideos(item): url= 'https://or01.top-ix.org/videomg/_definst_/mp4:' + item.url + '/' + url, server= 'directo') ) - return support.server(item, itemlist=itemlist, down_load=False) + return support.server(item, itemlist=itemlist, Download=False) def make_itemlist(itemlist, item, data): search = item.search if item.search else ''