mod_http_file_share: Fix expiry disabled check for new config API
authorKim Alvefur <zash@zash.se>
Mon, 08 Apr 2024 16:44:11 +0200
changeset 13482 fe7557cf31a6
parent 13481 e8ac3ce3238e
child 13483 d1b7edf4e2de
mod_http_file_share: Fix expiry disabled check for new config API Similar to 26c30844cac6
plugins/mod_http_file_share.lua
--- 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";