Partially fixes (#6790)

This commit is contained in:
MatteoBiscosi 2022-07-22 13:25:21 +02:00
parent b730d5cdc0
commit 56d941f4fa
4 changed files with 15 additions and 6 deletions

View file

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