From 556d08c3951679425814041fd018bc4543843647 Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Mon, 6 Jul 2026 06:05:53 +0200 Subject: [PATCH] [fix] google CSE - leftover from PR #6364 (#6369) The `ZZ` issue has been fixed in the google.py and the default lang_code is already `en`: - https://github.com/searxng/searxng/pull/6364#discussion_r3524461287 Signed-off-by: Markus Heiser --- searx/engines/google_cse.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/searx/engines/google_cse.py b/searx/engines/google_cse.py index 4c333dfdd..4d39c8cc9 100644 --- a/searx/engines/google_cse.py +++ b/searx/engines/google_cse.py @@ -97,14 +97,10 @@ def request(query: str, params: "OnlineParams") -> None: google_info = get_google_info(params, traits) info: dict[str, str] = google_info["params"] - hl = info["hl"] - if params.get("searxng_locale", "all") == "all" or "ZZ" in hl: - hl = "en" - args = { "rsz": "filtered_cse", "num": str(page_size), - "hl": hl, + "hl": info["hl"], "cselibv": token["cselibv"], "cx": CX, "q": query,