plugins/mod_http_file_share.lua
changeset 13482 fe7557cf31a6
parent 13366 11e66ad894f0
--- a/plugins/mod_http_file_share.lua	Mon Apr 08 09:29:58 2024 +0200
+++ b/plugins/mod_http_file_share.lua	Mon Apr 08 16:44:11 2024 +0200
@@ -452,7 +452,7 @@
 	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";