From 35009f59021fb34b55d6208fed08f0a8ae425819 Mon Sep 17 00:00:00 2001 From: bashonly Date: Mon, 9 Jun 2025 17:57:40 -0500 Subject: [PATCH] cleanup Authored by: bashonly --- yt_dlp/extractor/common.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/yt_dlp/extractor/common.py b/yt_dlp/extractor/common.py index fe0b50770..1f5aacac4 100644 --- a/yt_dlp/extractor/common.py +++ b/yt_dlp/extractor/common.py @@ -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] = []