util.jid: Simplify boolean logic in conditionals

This commit is contained in:
Matthew Wild 2022-10-11 13:35:09 +01:00
parent 6ae850c963
commit 120e01f162

View file

@ -90,9 +90,9 @@ local function compare(jid, acl)
-- TODO compare to table of rules?
local jid_node, jid_host, jid_resource = split(jid);
local acl_node, acl_host, acl_resource = split(acl);
if ((acl_node ~= nil and acl_node == jid_node) or acl_node == nil) and
((acl_host ~= nil and acl_host == jid_host) or acl_host == nil) and
((acl_resource ~= nil and acl_resource == jid_resource) or acl_resource == nil) then
if (acl_node == nil or acl_node == jid_node) and
(acl_host == nil or acl_host == jid_host) and
(acl_resource == nil or acl_resource == jid_resource) then
return true
end
return false