diff options
| author | dalf <alex@al-f.net> | 2013-12-31 12:54:48 +0100 |
|---|---|---|
| committer | dalf <alex@al-f.net> | 2013-12-31 12:54:48 +0100 |
| commit | 4009b9a66dd2125671526c294a8951d253bf2b92 (patch) | |
| tree | a99ddd6cf8337e66af2d04bce9c35d1d013a659a | |
| parent | 376f15cb1c0a4a58ea31d08a70a75f4459fef0f0 (diff) | |
[mod] the browser search always uses the general category
| -rw-r--r-- | searx/webapp.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/searx/webapp.py b/searx/webapp.py index c95cae2c2..20534416f 100644 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -91,11 +91,6 @@ def index(): continue selected_categories.append(category) if not len(selected_categories): - cookie_categories = request.cookies.get('categories', '').split(',') - for ccateg in cookie_categories: - if ccateg in categories: - selected_categories.append(ccateg) - if not len(selected_categories): selected_categories = ['general'] for categ in selected_categories: |