mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 07:29:32 +00:00
Fixed visual bugs
This commit is contained in:
parent
d4298b34b1
commit
eeaab5c918
3 changed files with 10 additions and 6 deletions
|
|
@ -5110,7 +5110,11 @@ function format_tls_info(tls_info)
|
|||
end
|
||||
|
||||
if tls_info.tls_version then
|
||||
tls_info["tls_version"] = ntop.getTLSVersionName(tls_info.tls_version)
|
||||
if tls_info.tls_version > 0 then
|
||||
tls_info["tls_version"] = ntop.getTLSVersionName(tls_info.tls_version)
|
||||
else
|
||||
tls_info["tls_version"] = nil
|
||||
end
|
||||
end
|
||||
|
||||
if tls_info.client_requested_server_name then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue