mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_http_file_share: Fix logging of error opening file
It's annoying that Lua interpolates the filename into the error message.
This commit is contained in:
parent
1f00a4fd8e
commit
de641f6e24
1 changed files with 1 additions and 1 deletions
|
@ -342,7 +342,7 @@ function handle_download(event, path) -- GET /uploads/:slot+filename
|
|||
local filename = get_filename(slot_id);
|
||||
local handle, ferr = io.open(filename);
|
||||
if not handle then
|
||||
module:log("error", "Could not open file: %s", filename, ferr);
|
||||
module:log("error", "Could not open file for reading: %s", ferr);
|
||||
-- This can be because the upload slot wasn't used, or the file disappeared
|
||||
-- somehow, or permission issues.
|
||||
return 410;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue