diff options
-rw-r--r-- | lua/sandborb/route_handler.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/sandborb/route_handler.lua b/lua/sandborb/route_handler.lua index 98ece1d..ae69875 100644 --- a/lua/sandborb/route_handler.lua +++ b/lua/sandborb/route_handler.lua @@ -25,7 +25,7 @@ function HANDLE_ROUTE(e, path) return "Hello, you are at the root!" elseif path == "/about" then sb_send_status(e, 200, "OK") - sb_send_header(e, "Content-Type", "text/text") + sb_send_header(e, "Content-Type", "text/plain") return "This is the about page!" elseif path == "/banana" then return banana(e) |