From 200986b698da9eb3a2f9423f8383596cae2e091f Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Tue, 17 Aug 2021 21:30:05 +0100 Subject: [PATCH] Fix problem with incoming network audio being ignored. --- M17Control.cpp | 2 +- Version.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/M17Control.cpp b/M17Control.cpp index e2c70f7..0b5f0fd 100644 --- a/M17Control.cpp +++ b/M17Control.cpp @@ -402,7 +402,7 @@ void CM17Control::writeNetwork() if (!m_enabled) return; - if (m_rfState != RS_RF_LISTENING && m_netState == RS_NET_IDLE) + if (m_rfState != RS_RF_LISTENING && m_rfState != RS_RF_LATE_ENTRY && m_netState == RS_NET_IDLE) return; m_networkWatchdog.start(); diff --git a/Version.h b/Version.h index 907a357..25555d8 100644 --- a/Version.h +++ b/Version.h @@ -19,6 +19,6 @@ #if !defined(VERSION_H) #define VERSION_H -const char* VERSION = "20210811"; +const char* VERSION = "20210817"; #endif