diff options
author | Kim Alvefur <zash@zash.se> | 2016-02-04 10:06:09 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-02-04 10:06:09 +0100 |
commit | 7eb5fb8b1c44ec42b63d9964d57b6904da4a0bab (patch) | |
tree | c941d5118b73bbbca5eba92a64fa713e1de81bfc | |
parent | 66a03adf5dba1e9ddb40ec400e05c60373ec12d9 (diff) | |
download | prosody-7eb5fb8b1c44ec42b63d9964d57b6904da4a0bab.tar.gz prosody-7eb5fb8b1c44ec42b63d9964d57b6904da4a0bab.zip |
mod_groups: Use module:get_option_path, look for file relative to config dir
-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 be1a5508..62a38246 100644 --- a/plugins/mod_groups.lua +++ b/plugins/mod_groups.lua @@ -82,7 +82,7 @@ function remove_virtual_contacts(username, host, datastore, data) end function module.load() - groups_file = module:get_option_string("groups_file"); + groups_file = module:get_option_path("groups_file", nil, "config"); if not groups_file then return; end module:hook("roster-load", inject_roster_contacts); |