diff options
Diffstat (limited to 'yt_dlp/extractor/spotify.py')
-rw-r--r-- | yt_dlp/extractor/spotify.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/spotify.py b/yt_dlp/extractor/spotify.py index fef8d8dd2..f476b7022 100644 --- a/yt_dlp/extractor/spotify.py +++ b/yt_dlp/extractor/spotify.py @@ -98,7 +98,7 @@ class SpotifyBaseIE(InfoExtractor): } @classmethod - def _extract_embed_urls(cls, webpage): + def _extract_urls(cls, webpage): return re.findall( r'<iframe[^>]+src="(https?://open\.spotify.com/embed/[^"]+)"', webpage) |