mod_limits: Fix typo

This commit is contained in:
Kim Alvefur 2019-04-02 21:22:20 +02:00
parent 1b534392de
commit e632119ffa

View file

@ -100,7 +100,7 @@ end
function module.add_host(module)
local unlimited_jids = module:get_option_inherited_set("unlimited_jids", {});
if not unlimited_jids:empy() then
if not unlimited_jids:empty() then
module:hook("authentication-success", function (event)
local session = event.session;
local session_type = session.type:match("^[^_]+");