mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 16:09:32 +00:00
Fixed wrongly vlan redis key
This commit is contained in:
parent
59421e73a2
commit
7467bf8066
1 changed files with 2 additions and 2 deletions
|
|
@ -2039,10 +2039,10 @@ end
|
|||
-- ##############################################
|
||||
|
||||
function getVlanAlias(vlan_id)
|
||||
local alias = ntop.getLocalNetworkAlias(vlan_id) or nil
|
||||
local alias = ntop.getVlanAliasKey(vlan_id) or nil
|
||||
|
||||
if not alias then
|
||||
alias = ntop.getHashCache(getVlanAliasKey(), vlan_id)
|
||||
alias = ntop.getHashCache(getVlanAliasKey(), vlan_id)
|
||||
end
|
||||
|
||||
if not isEmptyString(alias) then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue