mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_http_file_share: Log error opening file for writing
util.error.coerce() doesn't work well with iolib
This commit is contained in:
parent
de641f6e24
commit
f7131f81f2
1 changed files with 3 additions and 2 deletions
|
@ -245,9 +245,10 @@ function handle_upload(event, path) -- PUT /upload/:slot
|
|||
|
||||
if not request.body_sink then
|
||||
module:log("debug", "Preparing to receive upload into %q, expecting %s", filename, B(upload_info.filesize));
|
||||
local fh, err = errors.coerce(io.open(filename.."~", "w"));
|
||||
local fh, err = io.open(filename.."~", "w");
|
||||
if not fh then
|
||||
return err;
|
||||
module:log("error", "Could not open file for writing: %s", err);
|
||||
return 500;
|
||||
end
|
||||
request.body_sink = fh;
|
||||
if request.body == false then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue