diff --git a/yt_dlp/extractor/boomplay.py b/yt_dlp/extractor/boomplay.py index 3fa6030c85..2f2eb2f100 100644 --- a/yt_dlp/extractor/boomplay.py +++ b/yt_dlp/extractor/boomplay.py @@ -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)