From f3127f54f56718c16c4fcbd23a32a56474842dcf Mon Sep 17 00:00:00 2001 From: Alhaziel01 Date: Sat, 17 Jun 2023 17:26:33 +0200 Subject: [PATCH] Fix SCWS --- servers/streamingcommunityws.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/servers/streamingcommunityws.py b/servers/streamingcommunityws.py index 944bde58..0e012191 100755 --- a/servers/streamingcommunityws.py +++ b/servers/streamingcommunityws.py @@ -55,6 +55,8 @@ def get_video_url(page_url, premium=False, user="", password="", video_password= local_subs = [s[1] for s in sorted(composed_subs, key=lambda n: n[0])] video_urls = [['m3u [{}]'.format(res), url, 0, local_subs] for res, url in urls] + else: + video_urls = [['hls', url]] return video_urls