mirror of
				https://github.com/searxng/searxng
				synced 2024-01-01 19:24:07 +01:00 
			
		
		
		
	Merge pull request #1974 from fehho/query-string-deserial
[fix] Deserialize preferences which are explicitly blank strings
This commit is contained in:
		
						commit
						2a51c85672
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -441,7 +441,7 @@ class Preferences: | ||||||
|         """parse (base64) preferences from request (``flask.request.form['preferences']``)""" |         """parse (base64) preferences from request (``flask.request.form['preferences']``)""" | ||||||
|         bin_data = decompress(urlsafe_b64decode(input_data)) |         bin_data = decompress(urlsafe_b64decode(input_data)) | ||||||
|         dict_data = {} |         dict_data = {} | ||||||
|         for x, y in parse_qs(bin_data.decode('ascii')).items(): |         for x, y in parse_qs(bin_data.decode('ascii'), keep_blank_values=True).items(): | ||||||
|             dict_data[x] = y[0] |             dict_data[x] = y[0] | ||||||
|         self.parse_dict(dict_data) |         self.parse_dict(dict_data) | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		
		Reference in a new issue
	
	 Alexandre Flament
						Alexandre Flament