mirror of https://github.com/searxng/searxng.git
[fix] autocomplete x-suggestion
This commit is contained in:
parent
0f4cb32bf1
commit
41aca9a068
|
@ -402,7 +402,7 @@ def autocompleter():
|
|||
|
||||
# return autocompleter results
|
||||
if request_data.get('format') == 'x-suggestions':
|
||||
return Response(json.dumps([query, results]),
|
||||
return Response(json.dumps([query.query, results]),
|
||||
mimetype='application/json')
|
||||
else:
|
||||
return Response(json.dumps(results),
|
||||
|
|
Loading…
Reference in New Issue