From: Vsevolod Stakhov Date: Tue, 11 Jan 2022 20:59:25 +0000 (+0000) Subject: [Minor] Oops, fix foldl call X-Git-Tag: 3.2~105 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=e834cdb26df34796124e5f4132e7fd9e8e359692;p=rspamd.git [Minor] Oops, fix foldl call --- diff --git a/rules/misc.lua b/rules/misc.lua index 9c8cade71..93512cb9f 100644 --- a/rules/misc.lua +++ b/rules/misc.lua @@ -339,7 +339,7 @@ rspamd_config.URI_COUNT_ODD = { local ct = task:get_header('Content-Type') if (ct and ct:lower():find('^multipart/alternative')) then local urls = task:get_urls_filtered(nil, {'subject', 'html_displayed', 'special'}) or {} - local nurls = fun.foldl(function(acc, val) return acc + val:get_count() end, 0) + local nurls = fun.foldl(function(acc, val) return acc + val:get_count() end, 0, urls) if nurls % 2 == 1 then return true, 1.0, tostring(nurls)