mirror of
https://github.com/yt-dlp/yt-dlp
synced 2024-12-28 22:24:34 +01:00
updxate _VALID_URL
This commit is contained in:
parent
5b962d70de
commit
5b1b5bb1b6
1 changed files with 1 additions and 1 deletions
|
@ -445,7 +445,7 @@ class BoomPlaySearchPageIE(BoomPlayBaseIE):
|
|||
|
||||
@classproperty
|
||||
def _VALID_URL(cls):
|
||||
return rf'https?://(?:www\.)?boomplay\.com/search/(?P<media_type>{"|".join(cls._MEDIA_TYPES)})/(?P<query>[^?&#/]+)'
|
||||
return r'https?://(?:www\.)?boomplay\.com/search/(?P<media_type>default|video|episode|podcasts|playlists|artists|albums)/(?P<query>[^?&#/]+)'
|
||||
|
||||
def _real_extract(self, url):
|
||||
media_type, query = self._match_valid_url(url).group('media_type', 'query')
|
||||
|
|
Loading…
Reference in a new issue