mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_http_file_share: Fix expiry disabled check for new config API
Similar to 26c30844cac6
This commit is contained in:
parent
a4f4acaa55
commit
04a918233e
1 changed files with 1 additions and 1 deletions
|
@ -452,7 +452,7 @@ function handle_download(event, path) -- GET /uploads/:slot+filename
|
|||
return response:send_file(handle);
|
||||
end
|
||||
|
||||
if expiry >= 0 and not external_base_url then
|
||||
if expiry < math.huge and not external_base_url then
|
||||
-- TODO HTTP DELETE to the external endpoint?
|
||||
local array = require "prosody.util.array";
|
||||
local async = require "prosody.util.async";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue