mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-23 09:01:43 +00:00
[prosiebensat1] Throw ExtractionError on unsupported page type (closes #12180)
This commit is contained in:
parent
983e9b7746
commit
8ffb8e63fe
@ -424,3 +424,6 @@ def _real_extract(self, url):
|
|||||||
return self._extract_clip(url, webpage)
|
return self._extract_clip(url, webpage)
|
||||||
elif page_type == 'playlist':
|
elif page_type == 'playlist':
|
||||||
return self._extract_playlist(url, webpage)
|
return self._extract_playlist(url, webpage)
|
||||||
|
else:
|
||||||
|
raise ExtractorError(
|
||||||
|
'Unsupported page type %s' % page_type, expected=True)
|
||||||
|
Loading…
Reference in New Issue
Block a user