mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_http_files: Log the error if we can't open or read a file
This commit is contained in:
parent
42907ced08
commit
92abfa2d51
1 changed files with 2 additions and 1 deletions
|
@ -115,10 +115,11 @@ function serve_file(event, path)
|
|||
else
|
||||
local f, err = open(full_path, "rb");
|
||||
if f then
|
||||
data = f:read("*a");
|
||||
data, err = f:read("*a");
|
||||
f:close();
|
||||
end
|
||||
if not data then
|
||||
module:log("debug", "Could not open or read %s. Error was %s", full_path, err);
|
||||
return 403;
|
||||
end
|
||||
local ext = path:match("%.([^./]+)$");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue