summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorDalf <alex@al-f.net>2019-07-16 16:27:29 +0200
committerDalf <alex@al-f.net>2019-07-17 09:05:29 +0200
commitc7220b40ead8c53b21e1533d23ffff8ae3b831bd (patch)
tree7131623994ea3f4bfe3e6cf7bfa0c2895918925d /utils
parentddee4861cee8d5b08e9219d4e727acc35fc3ca32 (diff)
downloadsearxng-c7220b40ead8c53b21e1533d23ffff8ae3b831bd.tar.gz
searxng-c7220b40ead8c53b21e1533d23ffff8ae3b831bd.zip
Suggestions: use RawTextQuery to make the suggestions URLs. Update all themes accordingly.
Diffstat (limited to 'utils')
-rwxr-xr-xutils/standalone_searx.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/standalone_searx.py b/utils/standalone_searx.py
index 223163639..7bc1d32ed 100755
--- a/utils/standalone_searx.py
+++ b/utils/standalone_searx.py
@@ -64,7 +64,7 @@ form = {
preferences = searx.preferences.Preferences(['oscar'], searx.engines.categories.keys(), searx.engines.engines, [])
preferences.key_value_settings['safesearch'].parse(args.safesearch)
-search_query = searx.search.get_search_query_from_webapp(preferences, form)
+search_query, raw_text_query = searx.search.get_search_query_from_webapp(preferences, form)
search = searx.search.Search(search_query)
result_container = search.search()