Explorar el Código

Merge pull request #944 from kvch/fix-google-images

[fix] fix xpath of google images
Adam Tauber hace 7 años
padre
commit
39e828df34
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      searx/engines/google_images.py

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

@@ -74,7 +74,7 @@ def response(resp):
74 74
     for result in dom.xpath('//div[@data-ved]'):
75 75
 
76 76
         try:
77
-            metadata = loads(''.join(result.xpath('./div[@class="rg_meta"]/text()')))
77
+            metadata = loads(''.join(result.xpath('./div[contains(@class, "rg_meta")]/text()')))
78 78
         except:
79 79
             continue
80 80