From 863d136dddc2b5947ac9ab615a91e085b2a307bb Mon Sep 17 00:00:00 2001 From: asciimoo Date: Sun, 5 Jan 2014 01:11:41 +0100 Subject: [PATCH] [fix] setting category cookie expiration to 4 weeks --- searx/webapp.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/searx/webapp.py b/searx/webapp.py index b7e2a467..2d48f232 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')