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