[chan] unescape html entities in title

This commit is contained in:
Mike Fährmann
2015-10-10 19:58:30 +02:00
parent 7b83f88c64
commit 4cb419b5d9

View File

@@ -44,4 +44,4 @@ class ChanExtractor(Extractor):
"""Return thread title from first post"""
if "sub" in post:
return post["sub"]
return text.remove_html(post["com"])[:50]
return text.unescape(text.remove_html(post["com"]))[:50]