aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/extractor/ximalaya.py
diff options
context:
space:
mode:
Diffstat (limited to 'yt_dlp/extractor/ximalaya.py')
-rw-r--r--yt_dlp/extractor/ximalaya.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/ximalaya.py b/yt_dlp/extractor/ximalaya.py
index a912e54b8..802d1bb1b 100644
--- a/yt_dlp/extractor/ximalaya.py
+++ b/yt_dlp/extractor/ximalaya.py
@@ -198,7 +198,7 @@ class XimalayaAlbumIE(XimalayaBaseIE):
def _real_extract(self, url):
self.scheme = scheme = 'https' if url.startswith('https') else 'http'
- mobj = re.match(self._VALID_URL, url)
+ mobj = self._match_valid_url(url)
uid, playlist_id = mobj.group('uid'), mobj.group('id')
webpage = self._download_webpage(self._TEMPLATE_URL % (scheme, uid, playlist_id), playlist_id,