Ladybird: Fix build with JS::MarkupGenerator's new string type usage

Fix to build after JS::MarkupGenerator got converted to use
new string type:
112b3f7342
This commit is contained in:
Aliaksandr Kalenik 2022-12-07 14:16:52 +03:00 committed by Andrew Kaster
parent 5a5c4f079b
commit 88667ce9f0
Notes: sideshowbarker 2024-07-17 02:38:40 +09:00

View file

@ -132,7 +132,7 @@ void ConsoleWidget::print_source_line(StringView source)
html.append("> "sv);
html.append("</span>"sv);
html.append(JS::MarkupGenerator::html_from_source(source));
html.append(JS::MarkupGenerator::html_from_source(source).release_value_but_fixme_should_propagate_errors());
print_html(html.string_view());
}