Fix Community Channels

This commit is contained in:
Alhaziel01
2021-03-13 15:25:27 +01:00
parent 466a37106b
commit 3a713dbfcf
2 changed files with 4 additions and 2 deletions
+3 -1
View File
@@ -476,9 +476,11 @@ def findvideos(item):
item_json = Item().fromjson(filetools.read(json_path))
list_servers = []
try: from urllib.parse import urlsplit
except ImportError: from urlparse import urlsplit
item_json.url = channel.host + urlsplit(item_json.url).path
try: item_json.url = channel.host + urlsplit(item_json.url).path
except: pass
try:
# FILTERTOOLS