summaryrefslogtreecommitdiffhomepage
path: root/modules/admin-mini/luasrc/model/cbi
diff options
context:
space:
mode:
Diffstat (limited to 'modules/admin-mini/luasrc/model/cbi')
-rw-r--r--modules/admin-mini/luasrc/model/cbi/mini/wifi.lua9
1 files changed, 7 insertions, 2 deletions
diff --git a/modules/admin-mini/luasrc/model/cbi/mini/wifi.lua b/modules/admin-mini/luasrc/model/cbi/mini/wifi.lua
index f612e9d53..4e1796475 100644
--- a/modules/admin-mini/luasrc/model/cbi/mini/wifi.lua
+++ b/modules/admin-mini/luasrc/model/cbi/mini/wifi.lua
@@ -58,15 +58,20 @@ function mode.write(self, section, value)
if value == "sta" then
-- ToDo: Move this away
if not luci.model.uci.get("network", "wan") then
- luci.model.uci.set("network", "wan", "interface")
luci.model.uci.set("network", "wan", "proto", "none")
+ luci.model.uci.set("network", "wan", "ifname", " ")
end
- luci.model.uci.set("network", "wan", "type", "bridge")
+ luci.model.uci.set("network", "wan", "_ifname", luci.model.uci.get("network", "wan", "ifname") or " ")
+ luci.model.uci.set("network", "wan", "ifname", " ")
luci.model.uci.save("network")
+ luci.model.uci.unload("network")
self.map:set(section, "network", "wan")
else
+ if luci.model.uci.get("network", "wan", "_ifname") then
+ luci.model.uci.set("network", "wan", "ifname", luci.model.uci.get("network", "wan", "_ifname"))
+ end
self.map:set(section, "network", "lan")
end