diff --git a/udpbase.cpp b/udpbase.cpp index 73bf91b..719848a 100644 --- a/udpbase.cpp +++ b/udpbase.cpp @@ -429,11 +429,12 @@ void udpBase::sendTrackedPacket(QByteArray d) udpMutex.lock(); udp->writeDatagram(d, radioIP, port); - if (congestion > 10) { // Poor quality connection? + + /*if (congestion > 10) { // Poor quality connection? udp->writeDatagram(d, radioIP, port); if (congestion > 20) // Even worse so send again. udp->writeDatagram(d, radioIP, port); - } + } */ if (idleTimer != Q_NULLPTR && idleTimer->isActive()) { idleTimer->start(IDLE_PERIOD); // Reset idle counter if it's running }