mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_groups: Missed hunk from last commit, don't create the list of public group members unless necessary
This commit is contained in:
parent
f90b07e55b
commit
117d917dfa
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ function module.load()
|
|||
datamanager.add_callback(remove_virtual_contacts);
|
||||
|
||||
groups = { default = {} };
|
||||
members = { [false] = {} };
|
||||
members = { };
|
||||
local curr_group = "default";
|
||||
for line in io.lines(groups_file) do
|
||||
if line:match("^%s*%[.-%]%s*$") then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue