mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 23:35:04 +00:00
[youtube:playlist] Recognize popular uploads playlist as mix (Closes #9170)
This commit is contained in:
parent
ffa2cecf72
commit
466a614537
1 changed files with 1 additions and 1 deletions
|
@ -1884,7 +1884,7 @@ def _real_extract(self, url):
|
||||||
if video:
|
if video:
|
||||||
return video
|
return video
|
||||||
|
|
||||||
if playlist_id.startswith('RD') or playlist_id.startswith('UL'):
|
if playlist_id.startswith(('RD', 'UL', 'PU')):
|
||||||
# Mixes require a custom extraction process
|
# Mixes require a custom extraction process
|
||||||
return self._extract_mix(playlist_id)
|
return self._extract_mix(playlist_id)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue