Fix bug in `--load-infojson` of playlists

Fixes: https://github.com/yt-dlp/yt-dlp/issues/1514#issuecomment-962659529
pull/1592/head
pukkandan 3 years ago
parent 582fad70f5
commit a49891c761
No known key found for this signature in database
GPG Key ID: 0F00D95A001F4698

@ -2985,7 +2985,7 @@ class YoutubeDL(object):
return info_dict
info_dict.setdefault('epoch', int(time.time()))
remove_keys = {'__original_infodict'} # Always remove this since this may contain a copy of the entire dict
keep_keys = ['_type'], # Always keep this to facilitate load-info-json
keep_keys = ['_type'] # Always keep this to facilitate load-info-json
if remove_private_keys:
remove_keys |= {
'requested_formats', 'requested_subtitles', 'requested_entries',

Loading…
Cancel
Save