From 87c2d9526464d111c3b7717e8dba94aaec67e74a Mon Sep 17 00:00:00 2001 From: Dirk Brenken Date: Sat, 31 Mar 2018 07:06:52 +0200 Subject: [PATCH] luci-base/network.lua: fix get_interface function * fix wrong private function call to handle section id as parameter (fix for #1687) Signed-off-by: Dirk Brenken --- modules/luci-base/luasrc/model/network.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/luci-base/luasrc/model/network.lua b/modules/luci-base/luasrc/model/network.lua index 056fc67b1..dfe818bcc 100644 --- a/modules/luci-base/luasrc/model/network.lua +++ b/modules/luci-base/luasrc/model/network.lua @@ -629,7 +629,7 @@ function get_interface(self, i) if _interfaces[i] or _wifi_iface(i) then return interface(i) else - local netid = _wifi_netid_by_netname(i) + local netid = _wifi_netid_by_sid(i) return netid and interface(netid) end end -- 2.11.0