mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 15:39:33 +00:00
Fixes Mac manufacturers escaping
This commit is contained in:
parent
06e2b24af8
commit
0a0d2d76ee
1 changed files with 5 additions and 1 deletions
|
|
@ -2493,7 +2493,11 @@ function get_manufacturer_mac(mac_address)
|
|||
|
||||
if(ret == m) then ret = "n/a" end
|
||||
|
||||
return ret
|
||||
if ret and ret ~= "" then
|
||||
ret = ret:gsub("'"," ")
|
||||
end
|
||||
|
||||
return ret or "n/a"
|
||||
end
|
||||
|
||||
-- rrd_exists
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue