Przeglądaj źródła

Merge pull request #1277 from kvch/fix-findx-engine

Fix findx engine
Adam Tauber 6 lat temu
rodzic
commit
829d479312
Brak konta powiązanego z e-mailem autora
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1
    1
      searx/engines/findx.py

+ 1
- 1
searx/engines/findx.py Wyświetl plik

@@ -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'])