diff --git a/applications/luci-app-dawn/htdocs/luci-static/resources/dawn/dawn-common.js b/applications/luci-app-dawn/htdocs/luci-static/resources/dawn/dawn-common.js index 9852994fd32a..a76d38495d12 100644 --- a/applications/luci-app-dawn/htdocs/luci-static/resources/dawn/dawn-common.js +++ b/applications/luci-app-dawn/htdocs/luci-static/resources/dawn/dawn-common.js @@ -49,9 +49,12 @@ function getChannelFromFrequency(freq) { else if (freq >= 4910 && freq <= 4980) { return (freq - 4000) / 5; } - else if (freq <= 45000) { + else if (freq <= 5935) { return (freq - 5000) / 5; } + else if (freq <= 45000) { + return (freq - 5950) / 5; + } else if (freq >= 58320 && freq <= 64800) { return (freq - 56160) / 2160; }