mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 07:29:32 +00:00
Fixes table expected error
This commit is contained in:
parent
048d97c2d4
commit
873a1d2252
2 changed files with 13 additions and 12 deletions
|
|
@ -5266,7 +5266,7 @@ function format_proto_info(proto_info)
|
|||
end
|
||||
end
|
||||
|
||||
for proto, info in pairs(proto_info) do
|
||||
for proto, info in pairs(proto_info or {}) do
|
||||
if proto == "tls" then
|
||||
proto_details[proto] = format_tls_info(info)
|
||||
elseif proto == "dns" then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue