Browse Source

Fix output

tags/1.1.0
Vsevolod Stakhov 8 years ago
parent
commit
44ebea556a
1 changed files with 6 additions and 1 deletions
  1. 6
    1
      src/rspamadm/fuzzy_stat.lua

+ 6
- 1
src/rspamadm/fuzzy_stat.lua View File

@@ -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

Loading…
Cancel
Save