mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 02:32:33 +01:00
[chan] unescape html entities in title
This commit is contained in:
parent
7b83f88c64
commit
4cb419b5d9
@ -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]
|
||||
|
Loading…
Reference in New Issue
Block a user