mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_http_files: Make sure file extensions are not nil or empty string
This commit is contained in:
parent
dc08340e9f
commit
0ff07edb45
1 changed files with 2 additions and 2 deletions
|
@ -118,8 +118,8 @@ function serve_file(event, path)
|
|||
if not data then
|
||||
return 403;
|
||||
end
|
||||
local ext = path:match("%.([^.]*)$");
|
||||
local content_type = mime_map[ext];
|
||||
local ext = path:match("%.([^./]+)$");
|
||||
local content_type = ext and mime_map[ext];
|
||||
cache[path] = { data = data; content_type = content_type; };
|
||||
response_headers.content_type = content_type;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue