diff options
Diffstat (limited to 'applications/luci-app-usteer/htdocs/luci-static/resources/view/usteer/usteer.js')
-rw-r--r-- | applications/luci-app-usteer/htdocs/luci-static/resources/view/usteer/usteer.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-usteer/htdocs/luci-static/resources/view/usteer/usteer.js b/applications/luci-app-usteer/htdocs/luci-static/resources/view/usteer/usteer.js index 5cbc8c7a40..daa5ec64df 100644 --- a/applications/luci-app-usteer/htdocs/luci-static/resources/view/usteer/usteer.js +++ b/applications/luci-app-usteer/htdocs/luci-static/resources/view/usteer/usteer.js @@ -611,7 +611,7 @@ return view.extend({ o = s.taboption('settings', form.DynamicList, 'ssid_list', _('SSID list'), _('List of SSIDs to enable steering on')); WifiNetworks.forEach(function (wifiNetwork) { - if (wifiNetwork.getSSID()) { + if (wifiNetwork.getSSID() && (!o.keylist || o.keylist.indexOf(wifiNetwork.getSSID()) === -1)) { o.value(wifiNetwork.getSSID()) } }); |