mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +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);
|
return response:send_file(handle);
|
||||||
end
|
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?
|
-- TODO HTTP DELETE to the external endpoint?
|
||||||
local array = require "prosody.util.array";
|
local array = require "prosody.util.array";
|
||||||
local async = require "prosody.util.async";
|
local async = require "prosody.util.async";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue