From 89b1893b30aa17e6257ceca42c057e30d5a4c172 Mon Sep 17 00:00:00 2001 From: Alhaziel01 Date: Thu, 21 Jan 2021 14:58:07 +0100 Subject: [PATCH] Fix StreamingCommunity --- channels/streamingcommunity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channels/streamingcommunity.py b/channels/streamingcommunity.py index 6adf2dc7..2891b180 100644 --- a/channels/streamingcommunity.py +++ b/channels/streamingcommunity.py @@ -206,5 +206,5 @@ def findvideos(item): executor.submit(videourls, res) if not video_urls: video_urls = [["m3u8 [StreamingCommunity]", url]] else: video_urls.sort(key=lambda url: int(support.match(url[0], patron=r'(\d+)p').match)) - itemlist = [item.clone(title = 'StreamingCommunity', video_urls=video_urls, thumbnail=channeltools.get_channel_parameters(item.channel)["thumbnail"], forcethumb=True)] + itemlist = [item.clone(title = channeltools.get_channel_parameters(item.channel)['title'], server='directo', video_urls=video_urls, thumbnail=channeltools.get_channel_parameters(item.channel)["thumbnail"], forcethumb=True)] return support.server(item, itemlist=itemlist) \ No newline at end of file