Do not convert L7 protocl to upper case, keep the nDPI case

This commit is contained in:
Alfredo Cardigliano 2022-02-05 10:40:49 +01:00
parent e96ec0c9f5
commit adbabe7883

View file

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