mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
08d9ba953a
commit
2c8349a602
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue