Fix problem with incoming network audio being ignored.

This commit is contained in:
Jonathan Naylor 2021-08-17 21:30:05 +01:00
parent 4ec4b3dafe
commit 200986b698
2 changed files with 2 additions and 2 deletions

View file

@ -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();

View file

@ -19,6 +19,6 @@
#if !defined(VERSION_H)
#define VERSION_H
const char* VERSION = "20210811";
const char* VERSION = "20210817";
#endif