From 54a97e10431c1cdae910d3b37074a63eda7100fc Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Tue, 25 Nov 2025 12:51:08 +0100 Subject: [mod] replace js_variable_to_python by js_obj_str_to_python (#2792) (#5477) This patch is based on PR #2792 (old PR from 2023) - js_obj_str_to_python handle more cases - bring tests from chompjs .. - comment out tests do not pass The tests from chompjs give some overview of what is not implemented. Signed-off-by: Markus Heiser --- searx/engines/naver.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'searx/engines/naver.py') diff --git a/searx/engines/naver.py b/searx/engines/naver.py index 5c331cd20..c715bc319 100644 --- a/searx/engines/naver.py +++ b/searx/engines/naver.py @@ -15,7 +15,7 @@ from searx.utils import ( extr, html_to_text, parse_duration_string, - js_variable_to_python, + js_obj_str_to_python, get_embeded_stream_url, ) @@ -125,7 +125,7 @@ def parse_images(data): match = extr(data, '') if match: - json = js_variable_to_python(match.strip()) + json = js_obj_str_to_python(match.strip()) items = json.get('content', {}).get('items', []) for item in items: -- cgit v1.2.3