mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2026-08-28 10:45:03 +00:00
Fix channel /videos tab returning no videos (#33277)
This commit is contained in:
parent
956b8c5855
commit
428a61ec11
|
|
@ -3749,6 +3749,13 @@ class YoutubeTabIE(YoutubeBaseInfoExtractor):
|
|||
entry = self._video_entry(video_renderer)
|
||||
if entry:
|
||||
yield entry
|
||||
# lockup view model (new YouTube format for videos/playlists)
|
||||
lockup_view_model = content.get('lockupViewModel')
|
||||
if lockup_view_model:
|
||||
entry = self._extract_lockup_view_model(lockup_view_model)
|
||||
if entry:
|
||||
yield entry
|
||||
continue
|
||||
# shorts item
|
||||
shorts_lockup_view_model = content.get('shortsLockupViewModel')
|
||||
if shorts_lockup_view_model:
|
||||
|
|
|
|||
Loading…
Reference in a new issue