mod_http_file_share: Allow started uploads to complete after token expired

Otherwise uploads taking longer than 5 minutes would be rejected on
completion, and that's probably annoying.

Thanks jonas’
This commit is contained in:
Kim Alvefur 2021-01-28 17:24:37 +01:00
parent 08d9ba953a
commit 2c8349a602

View file

@ -169,7 +169,7 @@ function handle_upload(event, path) -- PUT /upload/:slot
module:log("debug", "Unauthorized or invalid token: %s, %q", authed, upload_info);
return 401;
end
if upload_info.exp < os.time() then
if not request.body_sink and upload_info.exp < os.time() then
module:log("debug", "Authorization token expired on %s", dt.datetime(upload_info.exp));
return 410;
end