From 21b7d4e7ce42837357f28efcf8d01f6296f4acc2 Mon Sep 17 00:00:00 2001 From: Alhaziel01 Date: Thu, 13 Aug 2020 08:49:04 +0200 Subject: [PATCH] fix Streaming Community --- channels/streamingcommunity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channels/streamingcommunity.py b/channels/streamingcommunity.py index e4b827c4..5eafc07d 100644 --- a/channels/streamingcommunity.py +++ b/channels/streamingcommunity.py @@ -177,7 +177,7 @@ def findvideos(item): support.log() itemlist=[] url = support.match(support.match(item).data.replace('"','"').replace('\\',''), patron=r'video_url"\s*:\s*"([^"]+)"').match - playlist = support.match(url, patron=r'\./([^.]+)').matches + 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')) return support.server(item, itemlist=itemlist) \ No newline at end of file