1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 06:07:34 +00:00

WebServer+LibGUI: Use fallible version of StringBuilder::to_byte_buffer

...and simply ignore the errors for now. This allows us to remove the
infallible function and avoid accumulating more callers of it.
This commit is contained in:
Linus Groh 2023-03-09 14:58:04 +00:00
parent ac9c39fa17
commit ad5e8f2742
2 changed files with 2 additions and 2 deletions

View file

@ -81,7 +81,7 @@ void Client::start()
builder.append("\r\n"sv);
}
auto request = builder.to_byte_buffer();
auto request = builder.try_to_byte_buffer().release_value_but_fixme_should_propagate_errors();
dbgln_if(WEBSERVER_DEBUG, "Got raw request: '{}'", DeprecatedString::copy(request));
auto maybe_did_handle = handle_request(request);