mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
parent
db2ede9427
commit
c45a5ff840
Notes:
sideshowbarker
2024-07-19 09:30:47 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/c45a5ff8402
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ void Client::handle_request(ByteBuffer raw_request)
|
|||
void Client::send_error_response(unsigned code, const StringView& message, const Core::HttpRequest& request)
|
||||
{
|
||||
StringBuilder builder;
|
||||
builder.appendf("HTTP/1.0 %u", code);
|
||||
builder.appendf("HTTP/1.0 %u ", code);
|
||||
builder.append(message);
|
||||
builder.append("\r\n\r\n");
|
||||
builder.append("<!DOCTYPE html><html><body><h1>");
|
||||
|
|
Loading…
Reference in a new issue