Ensure `_type` is present in `info.json`

Closes #2447
pull/2540/head
pukkandan 2 years ago
parent d37707bda4
commit 6a5a30f9e2
No known key found for this signature in database
GPG Key ID: 0F00D95A001F4698

@ -3211,6 +3211,7 @@ class YoutubeDL(object):
if info_dict is None:
return info_dict
info_dict.setdefault('epoch', int(time.time()))
info_dict.setdefault('_type', 'video')
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
if remove_private_keys:

Loading…
Cancel
Save