diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2017-01-27 15:28:01 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-01-27 15:28:01 +0100 |
| commit | 3ecde5bc3a771abf39f3d072cc0424de27d4b784 (patch) | |
| tree | 506ed1dd4a527e37c902035d84215ed2be2577d9 /searx/webapp.py | |
| parent | ee1d44caf9bb9b0fb1b3bafbcbff74486b5449e8 (diff) | |
| parent | e67dfaaac7991b299dd9c33ae69e7028cd8f6589 (diff) | |
Merge pull request #804 from dalf/flask_perimeter
[mod] searx uses flask framework only in webapp.py
Diffstat (limited to 'searx/webapp.py')
| -rw-r--r-- | searx/webapp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/webapp.py b/searx/webapp.py index 929d9e243..8124d5775 100644 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -456,7 +456,7 @@ def index(): try: search_query = get_search_query_from_webapp(request.preferences, request.form) # search = Search(search_query) # without plugins - search = SearchWithPlugins(search_query, request) + search = SearchWithPlugins(search_query, request.user_plugins, request) result_container = search.search() except Exception as e: # log exception |