mirror of https://github.com/yt-dlp/yt-dlp.git
Merge pull request #1984 from alimirjamali/patch-1
Incorrect variable is used to check whether thumbnail exists
This commit is contained in:
commit
e9c424c144
|
@ -845,7 +845,7 @@ class YoutubeDL(object):
|
||||||
if info_dict.get('thumbnail') is not None:
|
if info_dict.get('thumbnail') is not None:
|
||||||
thumb_format = determine_ext(info_dict['thumbnail'], u'jpg')
|
thumb_format = determine_ext(info_dict['thumbnail'], u'jpg')
|
||||||
thumb_filename = os.path.splitext(filename)[0] + u'.' + thumb_format
|
thumb_filename = os.path.splitext(filename)[0] + u'.' + thumb_format
|
||||||
if self.params.get('nooverwrites', False) and os.path.exists(encodeFilename(infofn)):
|
if self.params.get('nooverwrites', False) and os.path.exists(encodeFilename(thumb_filename)):
|
||||||
self.to_screen(u'[%s] %s: Thumbnail is already present' %
|
self.to_screen(u'[%s] %s: Thumbnail is already present' %
|
||||||
(info_dict['extractor'], info_dict['id']))
|
(info_dict['extractor'], info_dict['id']))
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue