diff options
author | ajj8 <35781586+ajj8@users.noreply.github.com> | 2022-07-28 14:00:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-28 18:30:33 +0530 |
commit | edebb6517088a678e65112be28339b18bbe01b4d (patch) | |
tree | 4ef71ca6b7d97e241b1e715497e6d429210cd9fa | |
parent | f640e42ffa4049aa702f707be8a6c4472af9cbeb (diff) | |
download | hypervideo-pre-edebb6517088a678e65112be28339b18bbe01b4d.tar.lz hypervideo-pre-edebb6517088a678e65112be28339b18bbe01b4d.tar.xz hypervideo-pre-edebb6517088a678e65112be28339b18bbe01b4d.zip |
[extractor/bbc] Fix news articles (#4472)
Authored by: ajj8
-rw-r--r-- | yt_dlp/extractor/bbc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/bbc.py b/yt_dlp/extractor/bbc.py index 5ddeef7b5..4413a299a 100644 --- a/yt_dlp/extractor/bbc.py +++ b/yt_dlp/extractor/bbc.py @@ -1231,7 +1231,7 @@ class BBCIE(BBCCoUkIE): (lambda x: x['data']['blocks'], lambda x: x['data']['content']['model']['blocks'],), list) or []): - if block.get('type') != 'media': + if block.get('type') not in ['media', 'video']: continue parse_media(block.get('model')) return self.playlist_result( |