bugfix: unescaped string was not used by accident
This commit is contained in:
parent
03d3e0e179
commit
580d0f23aa
|
@ -1,6 +1,6 @@
|
|||
cmake_minimum_required (VERSION 3.7)
|
||||
project (mastorss
|
||||
VERSION 0.5.16
|
||||
VERSION 0.5.17
|
||||
LANGUAGES CXX
|
||||
)
|
||||
|
||||
|
|
|
@ -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>");
|
||||
|
|
Loading…
Reference in New Issue
Block a user