Browse Source

[fix] dailymotion engine: remove HTML tags from the description

Dalf 5 years ago
parent
commit
d44677e226
1 changed files with 2 additions and 2 deletions
  1. 2 2
      searx/engines/dailymotion.py

+ 2 - 2
searx/engines/dailymotion.py

@@ -15,7 +15,7 @@
 from json import loads
 from json import loads
 from datetime import datetime
 from datetime import datetime
 from searx.url_utils import urlencode
 from searx.url_utils import urlencode
-from searx.utils import match_language
+from searx.utils import match_language, html_to_text
 
 
 # engine dependent config
 # engine dependent config
 categories = ['videos']
 categories = ['videos']
@@ -59,7 +59,7 @@ def response(resp):
     for res in search_res['list']:
     for res in search_res['list']:
         title = res['title']
         title = res['title']
         url = res['url']
         url = res['url']
-        content = res['description']
+        content = html_to_text(res['description'])
         thumbnail = res['thumbnail_360_url']
         thumbnail = res['thumbnail_360_url']
         publishedDate = datetime.fromtimestamp(res['created_time'], None)
         publishedDate = datetime.fromtimestamp(res['created_time'], None)
         embedded = embedded_url.format(videoid=res['id'])
         embedded = embedded_url.format(videoid=res['id'])