libs/core: ensure that luci.model.network.network._ip() always returns a table if a list was requested
This commit is contained in:
parent
a9db1f2b74
commit
72fac8f90f
1 changed files with 1 additions and 1 deletions
|
@ -478,7 +478,7 @@ end
|
||||||
function network._ip(self, opt, family, list)
|
function network._ip(self, opt, family, list)
|
||||||
local ip = uci_s:get("network", self.sid, opt)
|
local ip = uci_s:get("network", self.sid, opt)
|
||||||
local fc = (family == 6) and ipc.IPv6 or ipc.IPv4
|
local fc = (family == 6) and ipc.IPv6 or ipc.IPv4
|
||||||
if ip then
|
if ip or list then
|
||||||
if list then
|
if list then
|
||||||
local l = { }
|
local l = { }
|
||||||
for ip in utl.imatch(ip) do
|
for ip in utl.imatch(ip) do
|
||||||
|
|
Loading…
Reference in a new issue