core.statsmanager: Use correct variable for config validation [luacheck]

This commit is contained in:
Kim Alvefur 2016-09-12 16:08:34 +02:00
parent b421c1992e
commit 503a9c65cd

View file

@ -6,7 +6,7 @@ local fire_event = prosody.events.fire_event;
local stats_interval_config = config.get("*", "statistics_interval");
local stats_interval = tonumber(stats_interval_config);
if stats_config and not stats_interval then
if stats_interval_config and not stats_interval then
log("error", "Invalid 'statistics_interval' setting, statistics will be disabled");
end