Parcourir la source

btdigg engine: fix text mojibake.

Seeing on the official instance, searching with non-ascii character
usually renders mojibake non-sense:

    http://searx.me/?q=%E9%A3%9F%E5%A0%82&categories=files

Screenshot with broken: ![](https://imgrush.com/1NNr_Rpv-rt2.png)

Screenshot of the fixed rendering: ![](https://imgrush.com/khe4M2P3VAyq.png)
Kang-min Liu il y a 9 ans
Parent
révision
01d2fb9f70
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      searx/engines/btdigg.py

+ 1
- 1
searx/engines/btdigg.py Voir le fichier

38
 def response(resp):
38
 def response(resp):
39
     results = []
39
     results = []
40
 
40
 
41
-    dom = html.fromstring(resp.text)
41
+    dom = html.fromstring(resp.content)
42
 
42
 
43
     search_res = dom.xpath('//div[@id="search_res"]/table/tr')
43
     search_res = dom.xpath('//div[@id="search_res"]/table/tr')
44
 
44