mirror of
https://github.com/g4klx/MMDVMHost.git
synced 2026-01-20 15:30:23 +01:00
Fix problem with incoming network audio being ignored.
This commit is contained in:
parent
4ec4b3dafe
commit
200986b698
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Reference in a new issue