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