Fix bug in writing playlist info-json

Closes #4889
pull/5732/merge
pukkandan 1 year ago
parent f74371a97d
commit ec54bd43f3
No known key found for this signature in database
GPG Key ID: 7EEE9E1E817D0A39

@ -1862,11 +1862,10 @@ class YoutubeDL:
self.to_screen('[download] Downloading item %s of %s' % (
self._format_screen(i + 1, self.Styles.ID), self._format_screen(n_entries, self.Styles.EMPHASIS)))
extra.update({
entry_result = self.__process_iterable_entry(entry, download, collections.ChainMap({
'playlist_index': playlist_index,
'playlist_autonumber': i + 1,
})
entry_result = self.__process_iterable_entry(entry, download, extra)
}, extra))
if not entry_result:
failures += 1
if failures >= max_failures:

Loading…
Cancel
Save