mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-12-22 16:57:40 +00:00
Corrected a small error
This commit is contained in:
parent
437f1dc159
commit
f4aa8c13b5
1 changed files with 10 additions and 9 deletions
|
@ -2428,6 +2428,7 @@ class YoutubeDL(object):
|
|||
if self.params.get('writethumbnail', False):
|
||||
thumbnails = info_dict.get('thumbnails')
|
||||
thumbnailformat = self.params.get('thumbnailformat', False)
|
||||
if thumbnails:
|
||||
if thumbnailformat:
|
||||
if thumbnailformat in [i.get('id') for i in thumbnails]:
|
||||
thumbnails = [i for i in thumbnails if i.get('id')==thumbnailformat]
|
||||
|
|
Loading…
Reference in a new issue