summaryrefslogtreecommitdiffhomepage
path: root/modules/admin-full/luasrc/model
diff options
context:
space:
mode:
Diffstat (limited to 'modules/admin-full/luasrc/model')
-rw-r--r--modules/admin-full/luasrc/model/cbi/admin_network/ifaces.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/admin-full/luasrc/model/cbi/admin_network/ifaces.lua b/modules/admin-full/luasrc/model/cbi/admin_network/ifaces.lua
index 5b298ea12d..4b2b88b147 100644
--- a/modules/admin-full/luasrc/model/cbi/admin_network/ifaces.lua
+++ b/modules/admin-full/luasrc/model/cbi/admin_network/ifaces.lua
@@ -157,7 +157,7 @@ function ifname_single.write(self, s, val)
local new_ifs = { }
local old_ifs = { }
- for _, i in ipairs(n:get_interfaces()) do
+ for _, i in ipairs(n:get_interfaces() or { n:get_interface() }) do
old_ifs[#old_ifs+1] = i:name()
end