浏览代码

[Minor] Oops, fix foldl call

tags/3.2
Vsevolod Stakhov 2 年前
父节点
当前提交
e834cdb26d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      rules/misc.lua

+ 1
- 1
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)

正在加载...
取消
保存