Procházet zdrojové kódy

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

Thomas Pointhuber před 10 roky
rodič
revize
5a7f85ecee
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1
    1
      searx/search.py

+ 1
- 1
searx/search.py Zobrazit soubor

@@ -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