diff options
author | Dalf <alex@al-f.net> | 2020-08-11 16:25:03 +0200 |
---|---|---|
committer | Alexandre Flament <alex@al-f.net> | 2020-09-10 10:49:42 +0200 |
commit | c225db45c8a4ab466bff049216f7e0189dc1b067 (patch) | |
tree | 16be3299a6faf15538fc1f2cf181aadc422039fd /searx/engines/scanr_structures.py | |
parent | 78883777438fc07833d983c50d9b131eb6feb9eb (diff) | |
download | searxng-c225db45c8a4ab466bff049216f7e0189dc1b067.tar.gz searxng-c225db45c8a4ab466bff049216f7e0189dc1b067.zip |
Drop Python 2 (4/n): SearchQuery.query is a str instead of bytes
Diffstat (limited to 'searx/engines/scanr_structures.py')
-rw-r--r-- | searx/engines/scanr_structures.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/scanr_structures.py b/searx/engines/scanr_structures.py index 3ed6c6fd5..6dbbf4fd9 100644 --- a/searx/engines/scanr_structures.py +++ b/searx/engines/scanr_structures.py @@ -29,7 +29,7 @@ def request(query, params): params['url'] = search_url params['method'] = 'POST' params['headers']['Content-type'] = "application/json" - params['data'] = dumps({"query": query.decode(), + params['data'] = dumps({"query": query, "searchField": "ALL", "sortDirection": "ASC", "sortOrder": "RELEVANCY", |