mod_http_files: Make sure file extensions are not nil or empty string

This commit is contained in:
Kim Alvefur 2012-12-21 08:19:58 +01:00
parent dc08340e9f
commit 0ff07edb45

View file

@ -118,8 +118,8 @@ function serve_file(event, path)
if not data then if not data then
return 403; return 403;
end end
local ext = path:match("%.([^.]*)$"); local ext = path:match("%.([^./]+)$");
local content_type = mime_map[ext]; local content_type = ext and mime_map[ext];
cache[path] = { data = data; content_type = content_type; }; cache[path] = { data = data; content_type = content_type; };
response_headers.content_type = content_type; response_headers.content_type = content_type;
end end