Преглед на файлове

[fix] cookie parameter type

Adam Tauber преди 9 години
родител
ревизия
3a8eafcc6b
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1
    1
      searx/webapp.py

+ 1
- 1
searx/webapp.py Целия файл

@@ -624,7 +624,7 @@ def preferences():
624 624
 
625 625
         resp.set_cookie('method', method, max_age=cookie_max_age)
626 626
 
627
-        resp.set_cookie('safesearch', safesearch, max_age=cookie_max_age)
627
+        resp.set_cookie('safesearch', str(safesearch), max_age=cookie_max_age)
628 628
 
629 629
         resp.set_cookie('image_proxy', image_proxy, max_age=cookie_max_age)
630 630