mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 07:59:35 +00:00
Partially fixes (#6790)
This commit is contained in:
parent
b730d5cdc0
commit
56d941f4fa
4 changed files with 15 additions and 6 deletions
|
|
@ -2089,7 +2089,12 @@ function getFlowsTableTitle()
|
|||
end
|
||||
|
||||
if _GET["application"] then
|
||||
active_msg = active_msg .. " ".. _GET["application"]
|
||||
local application = _GET["application"]
|
||||
|
||||
if tonumber(application) then
|
||||
application = interface.getnDPIProtoName(tonumber(application))
|
||||
end
|
||||
active_msg = active_msg .. " ".. application
|
||||
end
|
||||
|
||||
if _GET["category"] then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue