Make --raw work again.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
tastytea 2021-06-06 22:37:09 +02:00
parent 1e29608c7e
commit 0470acb00e
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 4 additions and 0 deletions

View File

@ -92,6 +92,10 @@ std::vector<match> search(const fs::path &filepath,
{
file = cleanup_text(helpers::unescape_html(document));
}
else
{
file.text = document;
}
}
string::const_iterator begin{file.text.begin()};