mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:29:38 +01:00
[extractor/youtube] Fix bug in handling of music URLs
Bug in bd7e919a75
Closes #5502
This commit is contained in:
parent
bc5c2f8a2c
commit
a8c754cc00
@ -4286,7 +4286,7 @@ def wrapper(self, url):
|
||||
if smuggled_data:
|
||||
_smuggle(info_dict, smuggled_data)
|
||||
if info_dict.get('entries'):
|
||||
info_dict['entries'] = (_smuggle(i, smuggled_data) for i in info_dict['entries'])
|
||||
info_dict['entries'] = (_smuggle(i, smuggled_data.copy()) for i in info_dict['entries'])
|
||||
return info_dict
|
||||
return wrapper
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user