From fd9de47093dc662bd21abb53cfa0e00a4b35346e Mon Sep 17 00:00:00 2001 From: Ycarus Date: Tue, 13 Mar 2018 15:35:28 +0100 Subject: [PATCH] Fix overview page --- luci-base/luasrc/sys.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/luci-base/luasrc/sys.lua b/luci-base/luasrc/sys.lua index a97271732..b8380756f 100644 --- a/luci-base/luasrc/sys.lua +++ b/luci-base/luasrc/sys.lua @@ -170,9 +170,9 @@ local function _nethints(what, callback) luci.ip.neighbors(nil, function(neigh) if neigh.mac and neigh.family == 4 then - _add(what, neigh.mac:upper(), neigh.dest:string(), nil, nil) + _add(what, neigh.mac:string(), neigh.dest:string(), nil, nil) elseif neigh.mac and neigh.family == 6 then - _add(what, neigh.mac:upper(), nil, neigh.dest:string(), nil) + _add(what, neigh.mac:string(), nil, neigh.dest:string(), nil) end end)