fixed arp table

This commit is contained in:
gabryon99 2021-03-22 16:37:00 +01:00
parent ec1eec80f2
commit 86047585e7
3 changed files with 7 additions and 7 deletions

View file

@ -52,12 +52,12 @@ else
for k,v in pairs(stats) do
if k == "arp.requests" then
res[#res + 1] = {}
res[#res]["arp_type"] = i18n("details.arp_requests")
res[#res]["type"] = i18n("details.arp_requests")
res[#res]["packets"] = v
end
if k == "arp.replies" then
res[#res + 1] = {}
res[#res]["arp_type"] = i18n("details.arp_replies")
res[#res]["type"] = i18n("details.arp_replies")
res[#res]["packets"] = v
end
end