From 88bb5f31c44926170f2ff43adef91877f4af283b Mon Sep 17 00:00:00 2001 From: Nick Hainke Date: Tue, 27 Sep 2022 09:30:15 +0200 Subject: [PATCH] luci-app-dawn: return 0 in case of weird frequency Sometimes 0 is passed to the frequency. Return 0 in that case. Signed-off-by: Nick Hainke --- applications/luci-app-dawn/luasrc/tools/ieee80211.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/applications/luci-app-dawn/luasrc/tools/ieee80211.lua b/applications/luci-app-dawn/luasrc/tools/ieee80211.lua index b35991ed7d..44b0464427 100644 --- a/applications/luci-app-dawn/luasrc/tools/ieee80211.lua +++ b/applications/luci-app-dawn/luasrc/tools/ieee80211.lua @@ -1,7 +1,9 @@ module("luci.tools.ieee80211", package.seeall) function frequency_to_channel(freq) - if (freq == 2484) then + if (freq <= 2400) then + return 0; + elseif (freq == 2484) then return 14; elseif (freq < 2484) then return (freq - 2407) / 5; -- 2.30.2