Browse Source

[fix] skip non-string result url/title/content

Adam Tauber 7 years ago
parent
commit
a065fcdcc9
1 changed files with 6 additions and 0 deletions
  1. 6
    0
      searx/results.py

+ 6
- 0
searx/results.py View File

170
             self.paging = True
170
             self.paging = True
171
 
171
 
172
         for i, result in enumerate(results):
172
         for i, result in enumerate(results):
173
+            if 'url' in result and not isinstance(result['url'], basestring):
174
+                continue
173
             try:
175
             try:
174
                 result['url'] = result['url'].decode('utf-8')
176
                 result['url'] = result['url'].decode('utf-8')
175
             except:
177
             except:
176
                 pass
178
                 pass
179
+            if 'title' in result and not isinstance(result['title'], basestring):
180
+                continue
181
+            if 'content' in result and not isinstance(result['content'], basestring):
182
+                continue
177
             position = i + 1
183
             position = i + 1
178
             self._merge_result(result, position)
184
             self._merge_result(result, position)
179
 
185