mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 07:29:32 +00:00
Do not convert L7 protocl to upper case, keep the nDPI case
This commit is contained in:
parent
e96ec0c9f5
commit
adbabe7883
1 changed files with 3 additions and 1 deletions
|
|
@ -1534,7 +1534,9 @@ end
|
|||
function getApplicationLabel(name)
|
||||
local icon = getApplicationIcon(name)
|
||||
|
||||
name = name:gsub("^%l", string.upper)
|
||||
-- Do not convert to upper case, keep the nDPI case
|
||||
--name = name:gsub("^%l", string.upper)
|
||||
|
||||
return(icon.." "..shortenString(name, 12))
|
||||
end
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue