diff --git a/httpserver-header.lua b/httpserver-header.lua index d848196..f6467d6 100644 --- a/httpserver-header.lua +++ b/httpserver-header.lua @@ -5,7 +5,7 @@ return function (connection, code, extension) local function getHTTPStatusString(code) - local codez = {200="OK", 400="Bad Request", 404="Not Found", 501="Not Implemented"} + local codez = {[200]="OK", [400]="Bad Request", [404]="Not Found", [501]="Not Implemented",} local myResult = codez[code] if myResult then return myResult else return "Unknown HTTP Status" end end