From 44941f4392bfc672b3f1b78beb2ffa1191b1a855 Mon Sep 17 00:00:00 2001 From: mediaminister Date: Tue, 23 Dec 2025 11:59:02 +0100 Subject: [PATCH] Fix stream url --- resources/lib/play/content.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lib/play/content.py b/resources/lib/play/content.py index a201c12..b8dc767 100644 --- a/resources/lib/play/content.py +++ b/resources/lib/play/content.py @@ -346,7 +346,7 @@ def get_stream(self, uuid: str, content_type: str) -> ResolvedStream: ssai = data['ssai'] ssai_url = ( f'https://pubads.g.doubleclick.net/ondemand/dash/content/' - f'{ssai.get('contentSourceID')}/vid/{ssai.get('videoID')}/streams' + f'{ssai.get("contentSourceID")}/vid/{ssai.get("videoID")}/streams' ) ad_data = json.loads(utils.post_url(ssai_url, data='')) manifest_url = ad_data.get('stream_manifest')