1
0
mirror of https://github.com/searxng/searxng.git synced 2024-10-05 19:10:10 +02:00

Merge pull request #180 from return42/unicode-url

[fix] decoding of saved preferences in the URL
This commit is contained in:
Alexandre Flament 2021-06-28 08:47:25 +02:00 committed by GitHub
commit b2da675e27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -437,10 +437,10 @@ class Preferences:
def parse_encoded_data(self, input_data):
"""parse (base64) preferences from request (``flask.request.form['preferences']``)"""
decoded_data = decompress(urlsafe_b64decode(input_data.encode()))
bin_data = decompress(urlsafe_b64decode(input_data))
dict_data = {}
for x, y in parse_qs(decoded_data).items():
dict_data[x.decode()] = y[0].decode()
for x, y in parse_qs(bin_data.decode('ascii')).items():
dict_data[x] = y[0]
self.parse_dict(dict_data)
def parse_dict(self, input_data):

View File

@ -1456,7 +1456,7 @@ engines:
timeout: 5.0
disabled: true
- name: slownik jezyka polskiego
- name: słownik języka polskiego
engine: sjp
shortcut: sjp
base_url: https://sjp.pwn.pl/