1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-22 10:42:34 +01:00

[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]