From 08762819b77b9c96499c11cff1ce2206c47f17e7 Mon Sep 17 00:00:00 2001 From: Alhaziel01 Date: Sat, 7 Nov 2020 17:15:03 +0100 Subject: [PATCH] Fix Streaming Community --- channels/streamingcommunity.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/channels/streamingcommunity.py b/channels/streamingcommunity.py index e68cddfc..9d526f17 100644 --- a/channels/streamingcommunity.py +++ b/channels/streamingcommunity.py @@ -175,10 +175,9 @@ def episodios(item): def findvideos(item): + support.info() itemlist=[] url = support.match(support.match(item).data.replace('"','"').replace('\\',''), patron=r'video_url"\s*:\s*"([^"]+)"').match - playlist = support.match(url.replace('https','http'), patron=r'\./([^.]+)').matches - for res in playlist: - itemlist.append(item.clone(title=support.config.get_localized_string(30137), server='directo', url=url.replace('playlist',res), quality=res, action='play')) + itemlist=[item.clone(title=support.config.get_localized_string(30137), server='directo', url=url, action='play')] return support.server(item, itemlist=itemlist) \ No newline at end of file