From 4cb419b5d97d35540d8db1cfe620e57fff338a65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Sat, 10 Oct 2015 19:58:30 +0200 Subject: [PATCH] [chan] unescape html entities in title --- gallery_dl/extractor/chan.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gallery_dl/extractor/chan.py b/gallery_dl/extractor/chan.py index 2d3b9936..236e1ada 100644 --- a/gallery_dl/extractor/chan.py +++ b/gallery_dl/extractor/chan.py @@ -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]