core.moduleapi: Log error for unexpected types (booleans?) set as periods

This commit is contained in:
Kim Alvefur 2023-07-16 21:02:24 +02:00
parent f3aac1a4be
commit c8ed05967a

View file

@ -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