Ver código fonte

Fix output

tags/1.1.0
Vsevolod Stakhov 8 anos atrás
pai
commit
44ebea556a
1 arquivos alterados com 6 adições e 1 exclusões
  1. 6
    1
      src/rspamadm/fuzzy_stat.lua

+ 6
- 1
src/rspamadm/fuzzy_stat.lua Ver arquivo

@@ -31,7 +31,12 @@ local function add_data(target, src)
target[k] = v
end
else
target[k] = v
if not target['ips'] then target['ips'] = {} end
-- Iterate over IPs
for ip,st in pairs(v) do
if not target['ips'][ip] then target['ips'][ip] = {} end
add_data(target['ips'][ip], st)
end
end
end
end

Carregando…
Cancelar
Salvar