forgot to forward

This commit is contained in:
Adam D. Ruppe 2020-01-13 18:08:17 -05:00
parent 059481bff2
commit b8660ee8bc
1 changed files with 1 additions and 1 deletions

View File

@ -468,6 +468,6 @@ class HtmlConverter {
///
string htmlToText(string html, bool wantWordWrap = true, int wrapAmount = 74) {
auto converter = new HtmlConverter();
return converter.convert(html, true, wrapAmount);
return converter.convert(html, wantWordWrap, wrapAmount);
}