mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 01:02:48 +01:00
Don't try to save the thumbnail if it's None
It means the extractor couldn't find it
This commit is contained in:
parent
cbdbb76665
commit
d8269e1dfb
@ -529,7 +529,7 @@ def process_info(self, info_dict):
|
||||
return
|
||||
|
||||
if self.params.get('writethumbnail', False):
|
||||
if 'thumbnail' in info_dict:
|
||||
if info_dict.get('thumbnail') is not None:
|
||||
thumb_format = determine_ext(info_dict['thumbnail'], u'jpg')
|
||||
thumb_filename = filename.rpartition('.')[0] + u'.' + thumb_format
|
||||
self.to_screen(u'[%s] %s: Downloading thumbnail ...' %
|
||||
|
Loading…
Reference in New Issue
Block a user