Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fcfcf662 authored by Alexandre Flament's avatar Alexandre Flament
Browse files

[fix] wikipedia: remove HTML from the title

fr.wikipedia.org (and it seems not other wikipedia websites),
adds HTML to api_result['displayTitle'].
(Search for '!wp :fr Braid' for example)

The commit uses api_result['title']
parent 06b754ad
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -76,7 +76,7 @@ def response(resp):
    if api_result.get('type') != 'standard':
        return []

    title = api_result['displaytitle']
    title = api_result['title']
    wikipedia_link = api_result['content_urls']['desktop']['page']

    results.append({'url': wikipedia_link, 'title': title})