mirror of
https://github.com/searxng/searxng.git
synced 2025-07-16 01:39:24 +02:00
[fix] preserve bangs in corrections
This commit is contained in:
parent
12f42d1572
commit
b0f89ed477
3 changed files with 11 additions and 5 deletions
|
@ -610,6 +610,12 @@ def index():
|
|||
'title': suggestion
|
||||
},
|
||||
result_container.suggestions)
|
||||
|
||||
correction_urls = list(map(lambda correction: {
|
||||
'url': raw_text_query.changeSearchQuery(correction).getFullQuery(),
|
||||
'title': correction
|
||||
},
|
||||
result_container.corrections))
|
||||
#
|
||||
return render(
|
||||
'results.html',
|
||||
|
@ -622,7 +628,7 @@ def index():
|
|||
advanced_search=advanced_search,
|
||||
suggestions=suggestion_urls,
|
||||
answers=result_container.answers,
|
||||
corrections=result_container.corrections,
|
||||
corrections=correction_urls,
|
||||
infoboxes=result_container.infoboxes,
|
||||
paging=result_container.paging,
|
||||
unresponsive_engines=result_container.unresponsive_engines,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue