1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-08 12:58:11 +02:00

[core] Fix format sorting with --load-info-json (#8521)

Closes #7971
Authored by: bashonly
This commit is contained in:
bashonly 2023-11-07 16:48:15 -06:00 committed by GitHub
parent 2622c804d1
commit 595ea4a99b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3550,7 +3550,7 @@ def sanitize_info(info_dict, remove_private_keys=False):
reject = lambda k, v: v is None or k.startswith('__') or k in {
'requested_downloads', 'requested_formats', 'requested_subtitles', 'requested_entries',
'entries', 'filepath', '_filename', 'filename', 'infojson_filename', 'original_url',
'playlist_autonumber', '_format_sort_fields',
'playlist_autonumber',
}
else:
reject = lambda k, v: False