1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-12-19 14:38:53 +00:00

Update yt_dlp/extractor/boomplay.py

This commit is contained in:
N/Ame
2024-10-15 13:27:09 +13:00
committed by GitHub
parent 16d68723dc
commit 445531c5a0

View File

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