diff options
| author | Mathieu Brunot <mathieu.brunot@monogramm.io> | 2019-10-29 23:53:08 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-10-29 23:53:08 +0100 |
| commit | e9d90d06a9343bdfa26c6993bb3fcc3cf17ac3ac (patch) | |
| tree | 2d882ae8a7c383c8800dd75098864b3a28a741f8 /searx/webapp.py | |
| parent | a51b2b6c20c1346748c09aec051d78f6822c580c (diff) | |
| parent | 4e029b023a27580f8ae443645a8ae45b30f5f747 (diff) | |
Merge branch 'master' into feature/accessibility
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, |