aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbashonly <88596187+bashonly@users.noreply.github.com>2025-01-15 20:40:13 -0600
committerGitHub <noreply@github.com>2025-01-16 02:40:13 +0000
commit164368610456e2d96b279f8b120dea08f7b1d74f (patch)
tree366e0af1800b124e9076d0cb887afd2b3391e880
parentbbc7591d3bb650f96cd1f1584055888cc919f14a (diff)
[ie/dropout] Fix extraction (#12102)
Closes #12103 Authored by: bashonly
-rw-r--r--yt_dlp/extractor/dropout.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/dropout.py b/yt_dlp/extractor/dropout.py
index 7e97c4d40..a0d8aacdb 100644
--- a/yt_dlp/extractor/dropout.py
+++ b/yt_dlp/extractor/dropout.py
@@ -135,7 +135,7 @@ class DropoutIE(InfoExtractor):
self.raise_login_required(method='any')
raise ExtractorError(login_err, expected=True)
- embed_url = self._search_regex(r'embed_url:\s*["\'](.+?)["\']', webpage, 'embed url')
+ embed_url = self._html_search_regex(r'embed_url:\s*["\'](.+?)["\']', webpage, 'embed url')
thumbnail = self._og_search_thumbnail(webpage)
watch_info = get_element_by_id('watch-info', webpage) or ''