1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-06-27 17:08:32 +00:00
Authored by: bashonly
This commit is contained in:
bashonly 2025-06-09 17:57:40 -05:00
parent 593e3ec151
commit 35009f5902
No known key found for this signature in database
GPG Key ID: 783F096F253D15B0

View File

@ -1818,8 +1818,7 @@ def _resolve_nuxt_array(self, array, video_id, *, fatal=True, default=NO_DEFAULT
if isinstance(element, list) and element and isinstance(element[0], str):
if element[0] in ('ShallowReactive', 'Reactive', 'ShallowRef', 'Ref'):
stack.append((target, index, element[1]))
continue
if element[0] == 'Map':
elif element[0] == 'Map':
target[index] = {}
elif element[0] == 'Set':
target[index] = []