mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
plugins: Use get_option_array for some list shaped options
Passing something from module:get_option() to ipairs() suggests that the option is a list of some sort.
This commit is contained in:
parent
8699c98ad8
commit
69e11f7524
2 changed files with 2 additions and 2 deletions
|
@ -90,7 +90,7 @@ register_role {
|
|||
|
||||
-- Process custom roles from config
|
||||
|
||||
local custom_roles = module:get_option("custom_roles", {});
|
||||
local custom_roles = module:get_option_array("custom_roles", {});
|
||||
for n, role_config in ipairs(custom_roles) do
|
||||
local ok, err = pcall(register_role, role_config);
|
||||
if not ok then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue