aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_authz_internal.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2023-07-21 22:48:54 +0200
committerKim Alvefur <zash@zash.se>2023-07-21 22:48:54 +0200
commit69e11f7524978f94486cca187fea67f34c8376b5 (patch)
treee53302229651ba112f09fad10f08e3c1c2f412b5 /plugins/mod_authz_internal.lua
parent8699c98ad88373cb524175c4035edc5610bddb77 (diff)
downloadprosody-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.lua2
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