mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-20 14:48:35 -04:00
SDRDaemon: Web API: check channel settings
This commit is contained in:
@@ -229,7 +229,7 @@ void SDRDaemonParser::parse(const QCoreApplication& app)
|
||||
QString txDelayStr = m_parser.value(m_txDelayOption);
|
||||
int txDelay = txDelayStr.toInt(&ok);
|
||||
|
||||
if (ok && (txDelay > 0))
|
||||
if (ok && (txDelay >= 0))
|
||||
{
|
||||
m_txDelay = txDelay;
|
||||
qDebug() << "SDRDaemonParser::parse: Tx delay: " << m_txDelay;
|
||||
|
||||
Reference in New Issue
Block a user