浏览代码

[fix] #121, HTTP 500 Error if res["content"] == None

Thomas Pointhuber 10 年前
父节点
当前提交
5a7f85ecee
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      searx/search.py

+ 1
- 1
searx/search.py 查看文件

@@ -131,7 +131,7 @@ def score_results(results):
131 131
         weight = 1.0
132 132
 
133 133
         # strip multiple spaces and cariage returns from content
134
-        if 'content' in res:
134
+        if res.get('content'):
135 135
             res['content'] = re.sub(' +', ' ',
136 136
                                     res['content'].strip().replace('\n', ''))
137 137