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:
Kim Alvefur 2023-07-21 22:48:54 +02:00
parent 8699c98ad8
commit 69e11f7524
2 changed files with 2 additions and 2 deletions

View file

@ -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