commit e834cdb: [Minor] Oops, fix foldl call

Vsevolod Stakhov vsevolod at highsecure.ru
Tue Jan 11 21:00:04 UTC 2022


Author: Vsevolod Stakhov
Date: 2022-01-11 20:59:25 +0000
URL: https://github.com/rspamd/rspamd/commit/e834cdb26df34796124e5f4132e7fd9e8e359692 (HEAD -> master)

[Minor] Oops, fix foldl call

---
 rules/misc.lua | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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)


More information about the Commits mailing list