aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/http/server.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/http/server.lua b/net/http/server.lua
index 788f046b..feb8f766 100644
--- a/net/http/server.lua
+++ b/net/http/server.lua
@@ -203,7 +203,7 @@ function _M.legacy_handler(request, response)
log("debug", "No handler found");
response.status_code = 404;
response.headers.content_type = "text/html";
- response:send("<html><head>404 Not Found</head><body>404 Not Found: No such page.</body></html>");
+ response:send("<html><head><title>404 Not Found</title></head><body>404 Not Found: No such page.</body></html>");
end
end