logo

searx

My custom branche(s) on searx, a meta-search engine git clone https://hacktivis.me/git/searx.git
commit: c361811cb563ee223a336ab1bbf17ec740b86433
parent 6d76d9b20255d8bd0a0cfd1620ec07047a28bff1
Author: Noémi Ványi <sitbackandwait@gmail.com>
Date:   Tue, 13 Jun 2017 19:47:56 +0200

[fix] fix xpath of google images

Diffstat:

Msearx/engines/google_images.py2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/searx/engines/google_images.py b/searx/engines/google_images.py @@ -74,7 +74,7 @@ def response(resp): for result in dom.xpath('//div[@data-ved]'): try: - metadata = loads(''.join(result.xpath('./div[@class="rg_meta"]/text()'))) + metadata = loads(''.join(result.xpath('./div[contains(@class, "rg_meta")]/text()'))) except: continue