1
0
mirror of https://github.com/yt-dlp/yt-dlp synced 2025-07-01 03:22:52 -05:00

Add key requested_downloads in the root info_dict

This commit is contained in:
pukkandan
2022-01-03 19:06:26 +05:30
parent 9c906919ae
commit f46e2f9d92
4 changed files with 35 additions and 15 deletions

View File

@ -53,7 +53,7 @@ class YoutubeDL(yt_dlp.YoutubeDL):
raise ExtractorError(message)
def process_info(self, info_dict):
self.processed_info_dicts.append(info_dict)
self.processed_info_dicts.append(info_dict.copy())
return super(YoutubeDL, self).process_info(info_dict)