mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-05-11 16:15:45 -05:00
Update yt_dlp/extractor/redbulltv.py
Fix Url formatting. Co-authored-by: pukkandan <pukkandan.ytdlp@gmail.com>
This commit is contained in:
parent
7b9398f1d1
commit
aa72488bd6
1 changed files with 1 additions and 1 deletions
|
@ -229,7 +229,7 @@ def _real_extract(self, url):
|
|||
display_id, query={
|
||||
'filter[type]': filter_type, 'page[limit]': 1, 'filter[uriSlug]': display_id,
|
||||
'disableUsageRestrictions': 'true', 'rb3Schema': 'v1:pageConfig',
|
||||
'rb3PageUrl': '/' + region.lower() + '-' + lang.lower() + '/' + filter_type + '/' + display_id,
|
||||
'rb3PageUrl': f'/{region.lower()}-{lang.lower()}/{filter_type}/{display_id}',
|
||||
})['data']
|
||||
|
||||
video_info = self._download_json(
|
||||
|
|
Loading…
Reference in a new issue