Fix bug in --load-infojson of playlists

Fixes: https://github.com/yt-dlp/yt-dlp/issues/1514#issuecomment-962659529
This commit is contained in:
pukkandan 2021-11-08 00:25:25 +05:30
parent 582fad70f5
commit a49891c761
No known key found for this signature in database
GPG Key ID: 0F00D95A001F4698

View File

@ -2985,7 +2985,7 @@ def sanitize_info(info_dict, remove_private_keys=False):
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',