1
0
mirror of https://github.com/searxng/searxng.git synced 2024-08-21 13:50:16 +02:00

Merge pull request #2365 from dalf/fix-soundcloud

[fix] soundclound: accept result without content
This commit is contained in:
Alexandre Flament 2020-12-07 20:25:17 +01:00 committed by GitHub
commit 13d3004703
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -91,7 +91,7 @@ def response(resp):
for result in search_res.get('collection', []):
if result['kind'] in ('track', 'playlist'):
title = result['title']
content = result['description']
content = result['description'] or ''
publishedDate = parser.parse(result['last_modified'])
uri = quote_plus(result['uri'])
embedded = embedded_url.format(uri=uri)