From: Dirk Brenken Date: Sat, 31 Mar 2018 05:06:52 +0000 (+0200) Subject: luci-base/network.lua: fix get_interface function X-Git-Url: https://git.archive.openwrt.org/?a=commitdiff_plain;h=refs%2Fpull%2F1709%2Fhead;p=project%2Fluci.git 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 --- 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