diff options
| author | Marc Abonce Seguin <marc-abonce@mailbox.org> | 2019-10-22 21:38:21 -0700 |
|---|---|---|
| committer | Marc Abonce Seguin <marc-abonce@mailbox.org> | 2019-10-22 21:41:50 -0700 |
| commit | b0f89ed4771a4238d3546323c707b1331baf5c97 (patch) | |
| tree | 07d83835056756cff650c0538fa751aa020f0439 /searx/webapp.py | |
| parent | 12f42d1572311a56401637ac5c7dc66008eb979c (diff) | |
[fix] preserve bangs in corrections
Diffstat (limited to 'searx/webapp.py')
| -rw-r--r-- | searx/webapp.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/searx/webapp.py b/searx/webapp.py index 505e93aea..3bb29140a 100644 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -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, |