diff options
author | Dalf <alex@al-f.net> | 2019-07-31 08:37:51 +0200 |
---|---|---|
committer | Dalf <alex@al-f.net> | 2019-07-31 08:37:51 +0200 |
commit | d44677e226b2530eea1c0f03806dd920055129cb (patch) | |
tree | bc30227477ccaea15064cc9b061140b65883f97c /searx/engines/dailymotion.py | |
parent | 7f56c78876c3f1ccd73c13a1275249a42c2c2405 (diff) | |
download | searxng-d44677e226b2530eea1c0f03806dd920055129cb.tar.gz searxng-d44677e226b2530eea1c0f03806dd920055129cb.zip |
[fix] dailymotion engine: remove HTML tags from the description
Diffstat (limited to 'searx/engines/dailymotion.py')
-rw-r--r-- | searx/engines/dailymotion.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/engines/dailymotion.py b/searx/engines/dailymotion.py index 069aceaa3..1038e64bf 100644 --- a/searx/engines/dailymotion.py +++ b/searx/engines/dailymotion.py @@ -15,7 +15,7 @@ from json import loads from datetime import datetime from searx.url_utils import urlencode -from searx.utils import match_language +from searx.utils import match_language, html_to_text # engine dependent config categories = ['videos'] @@ -59,7 +59,7 @@ def response(resp): for res in search_res['list']: title = res['title'] url = res['url'] - content = res['description'] + content = html_to_text(res['description']) thumbnail = res['thumbnail_360_url'] publishedDate = datetime.fromtimestamp(res['created_time'], None) embedded = embedded_url.format(videoid=res['id']) |