mod_http_file_share: Log error opening file for writing

util.error.coerce() doesn't work well with iolib
This commit is contained in:
Kim Alvefur 2021-04-05 16:24:39 +02:00
parent de641f6e24
commit f7131f81f2

View file

@ -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