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 "";