diff options
Diffstat (limited to 'applications/luci-wol')
-rw-r--r-- | applications/luci-wol/luasrc/model/cbi/wol.lua | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/applications/luci-wol/luasrc/model/cbi/wol.lua b/applications/luci-wol/luasrc/model/cbi/wol.lua index 30467f430..ad3479bca 100644 --- a/applications/luci-wol/luasrc/model/cbi/wol.lua +++ b/applications/luci-wol/luasrc/model/cbi/wol.lua @@ -72,7 +72,14 @@ end uci:foreach("dhcp", "host", function(s) if s.mac and s.ip then - arp[s.mac:upper()] = { s.ip, s.name } + if type(s.mac) == "table" then + local m + for _, m in ipairs(s.mac) do + arp[m:upper()] = { s.ip, s.name } + end + else + arp[s.mac:upper()] = { s.ip, s.name } + end end end) |