Browse Source

Shorten content field for very long Reddit search results

Kirill Isakov 9 years ago
parent
commit
a8832574fa
1 changed files with 4 additions and 1 deletions
  1. 4 1
      searx/engines/reddit.py

+ 4 - 1
searx/engines/reddit.py

@@ -66,7 +66,10 @@ def response(resp):
             img_results.append(params)
         else:
             created = datetime.fromtimestamp(data['created_utc'])
-            params['content'] = escape(data['selftext'])
+            content = escape(data['selftext'])
+            if len(content) > 500:
+                content = content[:500] + '...'
+            params['content'] = content
             params['publishedDate'] = created
             text_results.append(params)