mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 06:37:37 +03:00
core.moduleapi: Turn negative periods or "never" into infinity
As a way to signal that the periodic thing should be disabled, matching existing mod_mam usage
This commit is contained in:
parent
15a2cec870
commit
f3aac1a4be
1 changed files with 7 additions and 0 deletions
|
@ -257,8 +257,15 @@ end
|
||||||
function api:get_option_period(name, default_value)
|
function api:get_option_period(name, default_value)
|
||||||
local value = self:get_option_scalar(name, default_value);
|
local value = self:get_option_scalar(name, default_value);
|
||||||
if type(value) == "number" then
|
if type(value) == "number" then
|
||||||
|
if value < 0 then
|
||||||
|
self:log("debug", "Treating negative period as infinity");
|
||||||
|
return math.huge;
|
||||||
|
end
|
||||||
-- assume seconds
|
-- assume seconds
|
||||||
return value;
|
return value;
|
||||||
|
elseif value == "never" then
|
||||||
|
-- usually for disabling some periodic thing
|
||||||
|
return math.huge;
|
||||||
elseif type(value) == "string" then
|
elseif type(value) == "string" then
|
||||||
local ret = human_io.parse_duration(value);
|
local ret = human_io.parse_duration(value);
|
||||||
if value ~= nil and ret == nil then
|
if value ~= nil and ret == nil then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue