Skip to content

Commit 5aab1ee

Browse files
committed
Handle genuine booster devices connected to backhaul (#203)
1 parent ef0885f commit 5aab1ee

File tree

6 files changed

+36
-30
lines changed

6 files changed

+36
-30
lines changed

src/common/devices/www/lua/devices_helper.lua

+6
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,12 @@ function M.getWiFi()
242242
elseif v.param == "BSSID5GHZ" then
243243
bands[untaint(v.value)] = "5GHz"
244244
bandPrefixLength = #p
245+
elseif v.param == "BSSID2GHZ_Backhaul" then
246+
bands[untaint(v.value)] = "2.4GHz (BH)"
247+
bandPrefixLength = #p
248+
elseif v.param == "BSSID5GHZ_Backhaul" then
249+
bands[untaint(v.value)] = "5GHz (BH)"
250+
bandPrefixLength = #p
245251
elseif v.param == "BSSID" and find(p,"STA",skip_path_length,true) then
246252
bssid[p] = untaint(v.value)
247253
elseif v.param == "MACAddress" and find(p,sta_param,skip_path_length,true) then

tch-gui-unhide-17.2

+6-6
Large diffs are not rendered by default.

tch-gui-unhide-18.1.c

+6-6
Large diffs are not rendered by default.

tch-gui-unhide-20.3.c

+6-6
Large diffs are not rendered by default.

tch-gui-unhide-20.4

+6-6
Large diffs are not rendered by default.

tch-gui-unhide-21.4

+6-6
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)