From 855438e8433988ce3b9f754b97e6698235c3cc39 Mon Sep 17 00:00:00 2001 From: Phil Taylor Date: Wed, 5 Oct 2022 11:05:29 +0100 Subject: [PATCH] Update query --- cluster.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster.cpp b/cluster.cpp index 0069219..2e1267d 100644 --- a/cluster.cpp +++ b/cluster.cpp @@ -205,7 +205,7 @@ void dxClusterClient::freqRange(double low, double high) void dxClusterClient::updateSpots() { // Set the required freqency range. - QString queryText = QString("SELECT * FROM spots WHERE frequency >= %1 AND frequency <= %2").arg(lowFreq).arg(highFreq); + QString queryText = QString("SELECT * FROM spots WHERE frequency > %1 AND frequency < %2").arg(lowFreq).arg(highFreq); //QString queryText = QString("SELECT * FROM spots"); database db; auto query = db.query(queryText);