mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_blocklist: Rename variable for clarity
This commit is contained in:
parent
b2f0349c7e
commit
0ec9e20543
1 changed files with 5 additions and 5 deletions
|
@ -123,9 +123,9 @@ local function edit_blocklist(event)
|
|||
new[jid] = is_contact_subscribed(username, module.host, jid) or false;
|
||||
end
|
||||
|
||||
local mode = action.name == "block" or nil;
|
||||
local is_blocking = action.name == "block" or nil; -- nil if unblocking
|
||||
|
||||
if mode and not next(new) then
|
||||
if is_blocking and not next(new) then
|
||||
-- <block/> element does not contain at least one <item/> child element
|
||||
origin.send(st_error_reply(stanza, "modify", "bad-request"));
|
||||
return true;
|
||||
|
@ -135,12 +135,12 @@ local function edit_blocklist(event)
|
|||
|
||||
local new_blocklist = {};
|
||||
|
||||
if mode or next(new) then
|
||||
if is_blocking or next(new) then
|
||||
for jid in pairs(blocklist) do
|
||||
new_blocklist[jid] = true;
|
||||
end
|
||||
for jid in pairs(new) do
|
||||
new_blocklist[jid] = mode;
|
||||
new_blocklist[jid] = is_blocking;
|
||||
end
|
||||
-- else empty the blocklist
|
||||
end
|
||||
|
@ -154,7 +154,7 @@ local function edit_blocklist(event)
|
|||
return true;
|
||||
end
|
||||
|
||||
if mode then
|
||||
if is_blocking then
|
||||
for jid, in_roster in pairs(new) do
|
||||
if not blocklist[jid] and in_roster and sessions[username] then
|
||||
for _, session in pairs(sessions[username].sessions) do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue