mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
core.moduleapi: Improve handling of different types in :get_option_period
Pass positive numbers trough unharmed, parse strings as periods, discard anything else.
This commit is contained in:
parent
3c4dc9a754
commit
15a2cec870
1 changed files with 8 additions and 8 deletions
|
@ -256,16 +256,16 @@ end
|
|||
|
||||
function api:get_option_period(name, default_value)
|
||||
local value = self:get_option_scalar(name, default_value);
|
||||
local num = tonumber(value);
|
||||
if num then
|
||||
if type(value) == "number" then
|
||||
-- assume seconds
|
||||
return num;
|
||||
return value;
|
||||
elseif type(value) == "string" then
|
||||
local ret = human_io.parse_duration(value);
|
||||
if value ~= nil and ret == nil then
|
||||
self:log("error", "Config option '%s' not understood, expecting a period (e.g. \"2 days\")", name);
|
||||
end
|
||||
return ret;
|
||||
end
|
||||
local ret = human_io.parse_duration(value);
|
||||
if value ~= nil and ret == nil then
|
||||
self:log("error", "Config option '%s' not understood, expecting a period", name);
|
||||
end
|
||||
return ret;
|
||||
end
|
||||
|
||||
function api:get_option_boolean(name, ...)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue