From c13a301a94e84d581817a534875e4e2a5c0fdf19 Mon Sep 17 00:00:00 2001 From: m4tu4g <71326926+m4tu4g@users.noreply.github.com> Date: Thu, 20 Oct 2022 03:17:18 +0530 Subject: [extractor/zeenews] Add extractor (#5289) Closes #4967 Authored by: m4tu4g, pukkandan --- yt_dlp/extractor/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'yt_dlp/extractor/common.py') diff --git a/yt_dlp/extractor/common.py b/yt_dlp/extractor/common.py index ec3fb58e5..fb787a722 100644 --- a/yt_dlp/extractor/common.py +++ b/yt_dlp/extractor/common.py @@ -1576,7 +1576,7 @@ class InfoExtractor: continue if at_top_level and set(e.keys()) == {'@context', '@graph'}: traverse_json_ld(e['@graph'], at_top_level=False) - break + continue if expected_type is not None and not is_type(e, expected_type): continue rating = traverse_obj(e, ('aggregateRating', 'ratingValue'), expected_type=float_or_none) -- cgit v1.2.3