mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-14 05:03:09 +00:00
raise ExtractorError if the page doesn't contain a video
This commit is contained in:
parent
f3003531a5
commit
967c9076a3
@ -79,3 +79,5 @@ class FlickrIE(InfoExtractor):
|
|||||||
'uploader': owner.get('realname'),
|
'uploader': owner.get('realname'),
|
||||||
'comment_count': int_or_none(video_info.get('comments', {}).get('_content')),
|
'comment_count': int_or_none(video_info.get('comments', {}).get('_content')),
|
||||||
}
|
}
|
||||||
|
else:
|
||||||
|
raise ExtractorError('not a video', expected=True)
|
||||||
|
Loading…
Reference in New Issue
Block a user