summaryrefslogtreecommitdiff
path: root/Userland/Applications/Browser
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2022-12-06 20:42:59 +0000
committerLinus Groh <mail@linusgroh.de>2022-12-07 09:58:38 +0000
commit112b3f73429eff7a3b6947c7fb45c62a0e5c0727 (patch)
treea0ab8aaa9973ef4ddf4f13781a5598f2de4e1df7 /Userland/Applications/Browser
parentf23b55ae8681c818add83e025fca5a3e7282bda8 (diff)
downloadserenity-112b3f73429eff7a3b6947c7fb45c62a0e5c0727.zip
LibJS: Convert MarkupGenerator to the new String
Diffstat (limited to 'Userland/Applications/Browser')
-rw-r--r--Userland/Applications/Browser/ConsoleWidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/Browser/ConsoleWidget.cpp b/Userland/Applications/Browser/ConsoleWidget.cpp
index b089779d93..cce5ce4c13 100644
--- a/Userland/Applications/Browser/ConsoleWidget.cpp
+++ b/Userland/Applications/Browser/ConsoleWidget.cpp
@@ -133,7 +133,7 @@ void ConsoleWidget::print_source_line(StringView source)
html.append("&gt; "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());
}