diff options
author | Matthew Wild <mwild1@gmail.com> | 2010-03-22 14:33:38 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2010-03-22 14:33:38 +0000 |
commit | 117d917dfa718b6c65fcaa6b3404ecfa90983591 (patch) | |
tree | f85dc86e1871421bf326a7a5d8d25732047259bc /plugins/mod_groups.lua | |
parent | f90b07e55b263c6692841183786340a7ced53e00 (diff) | |
download | prosody-117d917dfa718b6c65fcaa6b3404ecfa90983591.tar.gz prosody-117d917dfa718b6c65fcaa6b3404ecfa90983591.zip |
mod_groups: Missed hunk from last commit, don't create the list of public group members unless necessary
Diffstat (limited to 'plugins/mod_groups.lua')
-rw-r--r-- | plugins/mod_groups.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_groups.lua b/plugins/mod_groups.lua index 23886539..7ef0d138 100644 --- a/plugins/mod_groups.lua +++ b/plugins/mod_groups.lua @@ -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 |