mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_blocklist: Add comments describing some variables
This commit is contained in:
parent
8920afaf2f
commit
66b75a0f2c
1 changed files with 2 additions and 2 deletions
|
@ -116,8 +116,8 @@ end);
|
|||
local function edit_blocklist(event)
|
||||
local origin, stanza = event.origin, event.stanza;
|
||||
local username = origin.username;
|
||||
local action = stanza.tags[1];
|
||||
local new = {};
|
||||
local action = stanza.tags[1]; -- "block" or "unblock"
|
||||
local new = {}; -- JIDs to block depending or unblock on action
|
||||
|
||||
for item in action:childtags("item") do
|
||||
local jid = jid_prep(item.attr.jid);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue