mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-14 21:23:05 +00:00
Update yt_dlp/extractor/boomplay.py
This commit is contained in:
parent
5b962d70de
commit
16d68723dc
@ -388,16 +388,14 @@ class BoomPlayGenericPlaylistIE(BoomPlayBaseIE):
|
||||
|
||||
@classmethod
|
||||
def suitable(cls, url):
|
||||
if super().suitable(url):
|
||||
return not any(ie.suitable(url) for ie in (
|
||||
return False if any(ie.suitable(url) for ie in (
|
||||
BoomPlayEpisodeIE,
|
||||
BoomPlayMusicIE,
|
||||
BoomPlayPlaylistIE,
|
||||
BoomPlayPodcastIE,
|
||||
BoomPlaySearchPageIE,
|
||||
BoomPlayVideoIE,
|
||||
))
|
||||
return False
|
||||
)) else super().suitable(url)
|
||||
|
||||
def _real_extract(self, url):
|
||||
_id = self._generic_id(url)
|
||||
|
Loading…
Reference in New Issue
Block a user