From 4406a8c64d38350bfb7214a6145f56d1fd96664a Mon Sep 17 00:00:00 2001 From: tastytea Date: Sun, 21 Jul 2019 16:25:13 +0200 Subject: [PATCH] Unescape HTML in titles. --- src/uri.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uri.cpp b/src/uri.cpp index 2dd9646..ee0b8fe 100644 --- a/src/uri.cpp +++ b/src/uri.cpp @@ -92,7 +92,7 @@ const string URI::extract_title(const string &html) { smatch match; regex_search(html, match, regex("([^<]+)", icase)); - return remove_newlines(match[1].str()); + return remove_newlines(unescape_html(match[1].str())); } return "";