1
0
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:
f4exb
2018-08-23 22:17:26 +02:00
parent 4f43e51178
commit 0b195947d8
2 changed files with 31 additions and 7 deletions
+1 -1
View File
@@ -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;