bugfix: unescaped string was not used by accident

This commit is contained in:
tastytea 2018-05-11 01:00:09 +02:00
parent 03d3e0e179
commit 580d0f23aa
Signed by: tastytea
GPG Key ID: 59346E0EA35C67E5
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
cmake_minimum_required (VERSION 3.7)
project (mastorss
VERSION 0.5.16
VERSION 0.5.17
LANGUAGES CXX
)

View File

@ -117,7 +117,7 @@ std::vector<string> parse_website(const string &xml)
continue;
}
Mastodon::API::unescape_html(str);
str = Mastodon::API::unescape_html(str);
// Try to turn the HTML into human-readable text
std::regex reparagraph("<p>");