[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 <markus.heiser@darmarit.de>
This commit is contained in:
Markus Heiser
2026-07-06 06:05:53 +02:00
committed by Bnyro
parent 1017631800
commit 556d08c395

View File

@@ -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,