Skip to content

Commit

Permalink
[ie/dropout] Fix extraction (yt-dlp#12102)
Browse files Browse the repository at this point in the history
Closes yt-dlp#12103
Authored by: bashonly
  • Loading branch information
bashonly authored and vladisslav2011 committed Jan 29, 2025
1 parent 0119866 commit b3f6068
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yt_dlp/extractor/dropout.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def _real_extract(self, url):
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 ''

Expand Down

0 comments on commit b3f6068

Please sign in to comment.