mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_groups: Ignore whitespace on group member JID lines (thanks Luis!)
This commit is contained in:
parent
24a8ca2e01
commit
c3a993d0ad
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ function module.load()
|
|||
groups[curr_group] = groups[curr_group] or {};
|
||||
else
|
||||
-- Add JID
|
||||
local jid = jid_prep(line);
|
||||
local jid = jid_prep(line:match("%S+"));
|
||||
if jid then
|
||||
module:log("debug", "New member of %s: %s", tostring(curr_group), tostring(jid));
|
||||
groups[curr_group][jid] = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue