mod_http_file_share: Fix expiry disabled check for new config API

Similar to 26c30844cac6
This commit is contained in:
Kim Alvefur 2024-04-08 16:44:11 +02:00
parent a4f4acaa55
commit 04a918233e

View file

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