diff --git a/Userland/Libraries/LibWeb/OutOfProcessWebView.cpp b/Userland/Libraries/LibWeb/OutOfProcessWebView.cpp index ff0eb2b63c..b731c0c6ea 100644 --- a/Userland/Libraries/LibWeb/OutOfProcessWebView.cpp +++ b/Userland/Libraries/LibWeb/OutOfProcessWebView.cpp @@ -69,7 +69,7 @@ void OutOfProcessWebView::create_client() builder.appendff(" on {}", escape_html_entities(m_url.host())); } builder.append(""); - builder.appendff("The web page {} has crashed.

You can reload the page to try again.", AK::urlencode(m_url.to_string()), escape_html_entities(m_url.to_string())); + builder.appendff("The web page {} has crashed.

You can reload the page to try again.", escape_html_entities(m_url.to_string_encoded()), escape_html_entities(m_url.to_string())); builder.append(""); load_html(builder.to_string(), m_url); };