From 87f77fb0c7b377e56ebe3563e9d7e6c056fbdece Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Wed, 13 Mar 2024 15:32:26 +0000 Subject: [Minor] Grr, reverse --- lualib/lua_maps.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lualib/lua_maps.lua b/lualib/lua_maps.lua index a67e11b63..a912039be 100644 --- a/lualib/lua_maps.lua +++ b/lualib/lua_maps.lua @@ -295,9 +295,9 @@ local function rspamd_map_add_from_ucl(opt, mtype, description, callback) if opt[1] then local function check_plain_map(line) - return lua_util.str_startswith('http', line) - or lua_util.str_startswith('file:', line) - or lua_util.str_startswith('/', line) + return lua_util.str_startswith(line, 'http') + or lua_util.str_startswith(line, 'file:') + or lua_util.str_startswith(line, '/') end -- Adjust each element if needed local adjusted -- cgit v1.2.3