mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.jid: Simplify boolean logic in conditionals
This commit is contained in:
parent
6ae850c963
commit
120e01f162
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue