base: webadmin: Don't take substring of nil variable
When converting interface names to UCI network names webadmin fails if there is no UCI network name because webadmin failed to ensure uciname has a value before attempting to take a substring. Signed-off-by: Daniel Dickinson <lede@cshore.thecshore.com>
This commit is contained in:
parent
f12fdba222
commit
7bfd36d585
1 changed files with 1 additions and 1 deletions
|
@ -96,7 +96,7 @@ function iface_get_network(iface)
|
|||
if net.l3_device == iface or net.device == iface then
|
||||
-- cross check with uci to filter out @name style aliases
|
||||
local uciname = cur:get("network", net.interface, "ifname")
|
||||
if not uciname or uciname:sub(1, 1) ~= "@" then
|
||||
if type(uciname) == "string" and uciname:sub(1,1) ~= "@" or uciname then
|
||||
return net.interface
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue