mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:07:58 +01:00
[tumblr] Dismiss warnings for optional fields (fixes #5202)
This commit is contained in:
parent
94c1255782
commit
ae849ca170
1 changed files with 2 additions and 2 deletions
|
@ -56,6 +56,6 @@ def _real_extract(self, url):
|
|||
'url': video_url,
|
||||
'ext': 'mp4',
|
||||
'title': video_title,
|
||||
'description': self._og_search_description(webpage),
|
||||
'thumbnail': self._og_search_thumbnail(webpage),
|
||||
'description': self._og_search_description(webpage, default=None),
|
||||
'thumbnail': self._og_search_thumbnail(webpage, default=None),
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue