Explorar el Código

fix findx engine

Noémi Ványi hace 6 años
padre
commit
25b48143ea
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      searx/engines/findx.py

+ 1
- 1
searx/engines/findx.py Ver fichero

@@ -49,7 +49,7 @@ def response(resp):
49 49
     results_json = loads(extract_text(results_raw_json))
50 50
 
51 51
     if len(results_json['web']['results']) > 0:
52
-        return _general_results(results_json['web']['results'])
52
+        return _general_results(results_json['web']['results']['webSearch']['results'])
53 53
 
54 54
     if len(results_json['images']['results']) > 0:
55 55
         return _images_results(results_json['images']['results'])