diff options
author | Kim Alvefur <zash@zash.se> | 2023-07-21 22:48:54 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2023-07-21 22:48:54 +0200 |
commit | 69e11f7524978f94486cca187fea67f34c8376b5 (patch) | |
tree | e53302229651ba112f09fad10f08e3c1c2f412b5 /plugins/mod_authz_internal.lua | |
parent | 8699c98ad88373cb524175c4035edc5610bddb77 (diff) | |
download | prosody-69e11f7524978f94486cca187fea67f34c8376b5.tar.gz prosody-69e11f7524978f94486cca187fea67f34c8376b5.zip |
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.
Diffstat (limited to 'plugins/mod_authz_internal.lua')
-rw-r--r-- | plugins/mod_authz_internal.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_authz_internal.lua b/plugins/mod_authz_internal.lua index 8710b7fe..96324734 100644 --- a/plugins/mod_authz_internal.lua +++ b/plugins/mod_authz_internal.lua @@ -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 |