From 7b9398f1d15edc0ea0ed2f4bc4d352e7eab4d880 Mon Sep 17 00:00:00 2001 From: suanto Date: Tue, 7 Jan 2025 15:48:33 +0200 Subject: [PATCH] Update yt_dlp/extractor/redbulltv.py Fix Url formatting. Co-authored-by: pukkandan --- yt_dlp/extractor/redbulltv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yt_dlp/extractor/redbulltv.py b/yt_dlp/extractor/redbulltv.py index 262b9036d..d9df4f2ff 100644 --- a/yt_dlp/extractor/redbulltv.py +++ b/yt_dlp/extractor/redbulltv.py @@ -225,7 +225,7 @@ def _real_extract(self, url): locale = '>'.join([f'{lang}-{reg}' for reg in regions]) rrn_data = self._download_json( - 'https://www.redbull.com/v3/api/graphql/v1/v3/feed/' + locale, + f'https://www.redbull.com/v3/api/graphql/v1/v3/feed/{locale}', display_id, query={ 'filter[type]': filter_type, 'page[limit]': 1, 'filter[uriSlug]': display_id, 'disableUsageRestrictions': 'true', 'rb3Schema': 'v1:pageConfig',