fix: channel being stuck at 1

This commit is contained in:
Maciej Krüger 2022-03-05 21:41:41 +01:00 committed by Alexander List
parent 279a0f82e4
commit 270249922a

View File

@ -54,7 +54,7 @@ end
local function get_channel(radio, config)
local channel
if wireless.preserve_channels(uci) or config.channel_adjustable(false) then
if wireless.preserve_channels(uci) or (config.channel_adjustable(false) and uci:get_bool('wireless', radio['.name'], 'configured')) then
-- preserved channel always wins
channel = radio.channel
elseif radio.band == '5g' and is_outdoor() then
@ -294,6 +294,7 @@ wireless.foreach_radio(uci, function(radio, index, config)
end
uci:set('wireless', radio_name, 'beacon_int', beacon_interval)
uci:set('wireless', radio_name, 'configured', true)
fixup_wan(radio, index)
end)