ソースを参照

Merge pull request #122 from pointhi/bugfix

[fix] #121, HTTP 500 Error if res["content"] == None
Adam Tauber 10 年 前
コミット
ee8cabf496
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 1
    1
      searx/search.py

+ 1
- 1
searx/search.py ファイルの表示

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