From 836402bf58147ff5a4afe4bc23388655ab7e4cc4 Mon Sep 17 00:00:00 2001 From: blankie Date: Wed, 13 Jul 2022 17:45:14 +0000 Subject: [PATCH] [twitter] unescape content (#2756) (#2757) Fixes #2756 --- gallery_dl/extractor/twitter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gallery_dl/extractor/twitter.py b/gallery_dl/extractor/twitter.py index 5e1fd22f..36b4806f 100644 --- a/gallery_dl/extractor/twitter.py +++ b/gallery_dl/extractor/twitter.py @@ -270,7 +270,7 @@ class TwitterExtractor(Extractor): "nick": u["name"], } for u in mentions] - content = tget("full_text") or tget("text") or "" + content = text.unescape(tget("full_text") or tget("text") or "") urls = entities.get("urls") if urls: for url in urls: