Browse Source

[fix] handle missing images in google news

Adam Tauber 8 years ago
parent
commit
0171db5c3f
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      searx/engines/google_news.py

+ 3
- 3
searx/engines/google_news.py View File

@@ -70,9 +70,9 @@ def response(resp):
70 70
             'content': ''.join(result.xpath('.//div[@class="st"]//text()')),
71 71
         }
72 72
 
73
-        img = result.xpath('.//img/@src')[0]
74
-        if img and not img.startswith('data'):
75
-            r['img_src'] = img
73
+        imgs = result.xpath('.//img/@src')
74
+        if len(imgs) and not imgs[0].startswith('data'):
75
+            r['img_src'] = imgs[0]
76 76
 
77 77
         results.append(r)
78 78