From 1008f30aa87b791bbe8cefd02372dd7e767f13c4 Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Mon, 26 Oct 2015 14:16:53 +0000 Subject: [PATCH] Fix load of settings with no setup. --- src/plugins/lua/settings.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/lua/settings.lua b/src/plugins/lua/settings.lua index 0003d0b64..e29b2d272 100644 --- a/src/plugins/lua/settings.lua +++ b/src/plugins/lua/settings.lua @@ -473,12 +473,12 @@ local function process_settings_map(string) return res end -if set_section[1] and type(set_section[1]) == "string" then +if set_section and set_section[1] and type(set_section[1]) == "string" then -- Just a map of ucl if not rspamd_config:add_map(set_section[1], "settings map", process_settings_map) then rspamd_logger.errx(rspamd_config, 'cannot load settings from %1', set_section) end -elseif type(set_section) == "table" then +elseif set_section and type(set_section) == "table" then process_settings_table(set_section) end -- 2.39.5