1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-07-10 07:18:33 +00:00
This commit is contained in:
grqx_wsl 2024-10-15 14:56:37 +13:00
parent 82d7e40908
commit 6beca5eb57

View File

@ -388,14 +388,16 @@ class BoomPlayGenericPlaylistIE(BoomPlayBaseIE):
@classmethod @classmethod
def suitable(cls, url): def suitable(cls, url):
return False if any(ie.suitable(url) for ie in ( if super().suitable(url):
return not any(ie.suitable(url) for ie in (
BoomPlayEpisodeIE, BoomPlayEpisodeIE,
BoomPlayMusicIE, BoomPlayMusicIE,
BoomPlayPlaylistIE, BoomPlayPlaylistIE,
BoomPlayPodcastIE, BoomPlayPodcastIE,
BoomPlaySearchPageIE, BoomPlaySearchPageIE,
BoomPlayVideoIE, BoomPlayVideoIE,
)) else super().suitable(url) ))
return False
def _real_extract(self, url): def _real_extract(self, url):
_id = self._generic_id(url) _id = self._generic_id(url)