mirror of
https://github.com/searxng/searxng.git
synced 2024-11-27 13:21:04 +00:00
Merge pull request #311 from dalf/fix-pr-302
[fix] searx/results.py: strip result['content'] only if it exists
This commit is contained in:
commit
76e0f6807c
1 changed files with 2 additions and 1 deletions
|
@ -255,7 +255,8 @@ class ResultContainer:
|
||||||
result['url'] = result['parsed_url'].geturl()
|
result['url'] = result['parsed_url'].geturl()
|
||||||
|
|
||||||
# strip multiple spaces and cariage returns from content
|
# strip multiple spaces and cariage returns from content
|
||||||
result['content'] = WHITESPACE_REGEX.sub(' ', result['content'])
|
if result.get('content'):
|
||||||
|
result['content'] = WHITESPACE_REGEX.sub(' ', result['content'])
|
||||||
|
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue