mod_groups: Use module:get_option_path, look for file relative to config dir

This commit is contained in:
Kim Alvefur 2016-02-04 10:06:09 +01:00
parent 2ab1810f7d
commit bccfb4fd28

View file

@ -82,7 +82,7 @@ function remove_virtual_contacts(username, host, datastore, data)
end end
function module.load() 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 if not groups_file then return; end
module:hook("roster-load", inject_roster_contacts); module:hook("roster-load", inject_roster_contacts);