From 5e42de1231c5fdc814428cb3a68568d6849901e1 Mon Sep 17 00:00:00 2001 From: John Melton G0ORX/N6LYT Date: Thu, 28 Dec 2017 17:26:49 +0000 Subject: [PATCH] fix US 60mtr channels --- frequency.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frequency.c b/frequency.c index 98cbdf9..a716b84 100644 --- a/frequency.c +++ b/frequency.c @@ -413,8 +413,10 @@ char* getFrequencyInfo(long long frequency,int filter_low,int filter_high) { if(info->band==band60) { int i; for(i=0;i=band_channels_60m[i].frequency && fhigh<=(band_channels_60m[i].frequency+band_channels_60m[i].width)) { + if(flow>=low_freq && fhigh<=hi_freq) { result=info->info; break; } -- 2.45.2