[extractor/bbc] Fix news articles (#4472)

Authored by: ajj8
pull/4487/head
ajj8 2 years ago committed by GitHub
parent f640e42ffa
commit edebb65170
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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(

Loading…
Cancel
Save