1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-04-05 03:41:17 +02:00

[core] Only ensure playlist thumbnail dir if writing thumbs ()

Bugfix for 2acd1d555ef89851c73773776715d3de9a0e30b9

Closes 
Authored by: bashonly
This commit is contained in:
bashonly 2023-10-22 18:05:22 -05:00 committed by GitHub
parent 4e38e2ae9d
commit a40e0b37df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -4242,7 +4242,7 @@ class YoutubeDL:
self.write_debug(f'Skipping writing {label} thumbnail') self.write_debug(f'Skipping writing {label} thumbnail')
return ret return ret
if not self._ensure_dir_exists(filename): if thumbnails and not self._ensure_dir_exists(filename):
return None return None
for idx, t in list(enumerate(thumbnails))[::-1]: for idx, t in list(enumerate(thumbnails))[::-1]: