mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
core.moduleapi: Log error for unexpected types (booleans?) set as periods
This commit is contained in:
parent
f3aac1a4be
commit
c8ed05967a
1 changed files with 2 additions and 0 deletions
|
@ -272,6 +272,8 @@ function api:get_option_period(name, default_value)
|
|||
self:log("error", "Config option '%s' not understood, expecting a period (e.g. \"2 days\")", name);
|
||||
end
|
||||
return ret;
|
||||
elseif value ~= nil then
|
||||
self:log("error", "Config option '%s' expects a number or a period description string (e.g. \"3 hours\"), not %s", name, type(value));
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue