Compare commits

...

1 Commits

Author SHA1 Message Date
Godzil
53e12f21f1 Change text/plain to application/octet-stream 2019-10-31 02:04:27 +00:00

View File

@ -15,7 +15,7 @@ return function(connection, code, extension, isGzipped, extraHeaders)
-- A few MIME types. Keep list short. If you need something that is missing, let's add it.
local mt = {css = "text/css", gif = "image/gif", html = "text/html", ico = "image/x-icon", jpeg = "image/jpeg",
jpg = "image/jpeg", js = "application/javascript", json = "application/json", png = "image/png", xml = "text/xml"}
if mt[ext] then return mt[ext] else return "text/plain" end
if mt[ext] then return mt[ext] else return "application/octet-stream" end
end
local mimeType = getMimeType(extension)