diff options
| author | Bnyro <bnyro@tutanota.com> | 2026-09-05 19:44:57 +0200 |
|---|---|---|
| committer | Bnyro <bnyro@tutanota.com> | 2026-09-05 19:46:48 +0200 |
| commit | 14a9f84c6c8c5eec2b1f6f1a54a30777c7c5f646 (patch) | |
| tree | c524d04ff2fa78b450bf1e56034f2c4319be3dc8 | |
| parent | 8b01679e8fc0558cde1da1d6437ca72ad20254e4 (diff) | |
[fix] chatnoir: returns empty responses
| -rw-r--r-- | searx/engines/chatnoir.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/searx/engines/chatnoir.py b/searx/engines/chatnoir.py index ef4a34e60..3a2de000e 100644 --- a/searx/engines/chatnoir.py +++ b/searx/engines/chatnoir.py @@ -84,6 +84,7 @@ def request(query: str, params: "OnlineParams"): params["url"] = f"{base_url}/api/v1/_search" params["method"] = "POST" + params["impersonate"] = "none" json_data = { "query": query, |
