summaryrefslogtreecommitdiff
path: root/searx/webapp.py
diff options
context:
space:
mode:
Diffstat (limited to 'searx/webapp.py')
-rw-r--r--searx/webapp.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/searx/webapp.py b/searx/webapp.py
index b7e2a4674..2d48f2323 100644
--- a/searx/webapp.py
+++ b/searx/webapp.py
@@ -152,7 +152,8 @@ def preferences():
selected_categories.append(category)
if selected_categories:
resp = make_response(redirect('/'))
- resp.set_cookie('categories', ','.join(selected_categories))
+ # cookie max age: 4 weeks
+ resp.set_cookie('categories', ','.join(selected_categories), max_age=60*60*24*7*4)
return resp
return render('preferences.html')