diff options
author | Linus Groh <mail@linusgroh.de> | 2022-12-06 20:42:59 +0000 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-12-07 09:58:38 +0000 |
commit | 112b3f73429eff7a3b6947c7fb45c62a0e5c0727 (patch) | |
tree | a0ab8aaa9973ef4ddf4f13781a5598f2de4e1df7 /Userland/Applications/Browser | |
parent | f23b55ae8681c818add83e025fca5a3e7282bda8 (diff) | |
download | serenity-112b3f73429eff7a3b6947c7fb45c62a0e5c0727.zip |
LibJS: Convert MarkupGenerator to the new String
Diffstat (limited to 'Userland/Applications/Browser')
-rw-r--r-- | Userland/Applications/Browser/ConsoleWidget.cpp | 2 |
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("> "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()); } |