Skip to content

Commit

Permalink
[ie/youtube:search_url] Fix playlist searches (yt-dlp#11782)
Browse files Browse the repository at this point in the history
Closes yt-dlp#11666
Authored by: Crypto90
  • Loading branch information
Crypto90 authored Dec 12, 2024
1 parent d5e2a37 commit f6c73aa
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions yt_dlp/extractor/youtube.py
Original file line number Diff line number Diff line change
Expand Up @@ -5282,6 +5282,7 @@ def _extract_entries(self, parent_renderer, continuation_list):
'channelRenderer': lambda x: self._grid_entries({'items': [{'channelRenderer': x}]}),
'hashtagTileRenderer': lambda x: [self._hashtag_tile_entry(x)],
'richGridRenderer': lambda x: self._extract_entries(x, continuation_list),
'lockupViewModel': lambda x: [self._extract_lockup_view_model(x)],
}
for key, renderer in isr_content.items():
if key not in known_renderers:
Expand Down

0 comments on commit f6c73aa

Please sign in to comment.