1
0
Fork 0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-03-09 12:50:23 -05:00

Update yt_dlp/extractor/softwhiteunderbelly.py

Co-authored-by: bashonly <88596187+bashonly@users.noreply.github.com>
This commit is contained in:
Ben Faerber 2025-02-21 15:04:13 -07:00 committed by GitHub
parent 0333c4a65a
commit a3f07cde2e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -89,6 +89,6 @@ def _real_extract(self, url):
'id': embed_id,
'display_id': display_id,
'title': clean_html(get_element_by_class('video-title', watch_info)),
'description': self._html_search_meta('description', webpage, fatal=False),
'description': self._html_search_meta('description', webpage, default=None),
'thumbnail': update_url(self._og_search_thumbnail(webpage) or '', query=None) or None,
}