From fbb87445580043bf2d17dd24c61062ffb44b1de8 Mon Sep 17 00:00:00 2001 From: Alhaziel01 Date: Sat, 11 Apr 2020 19:53:30 +0200 Subject: [PATCH] Fix support title --- core/support.py | 1 + 1 file changed, 1 insertion(+) diff --git a/core/support.py b/core/support.py index c9383aaa..411780e0 100755 --- a/core/support.py +++ b/core/support.py @@ -165,6 +165,7 @@ def scrapeLang(scraped, lang, longtitle): def cleantitle(title): if type(title) != str: title.decode('UTF-8') + title = scrapertools.decodeHtmlentities(title) cleantitle = title.replace('"', "'").replace('×', 'x').replace('–', '-').strip() return cleantitle