Skip to content

Commit

Permalink
Fix problem with incoming network audio being ignored.
Browse files Browse the repository at this point in the history
  • Loading branch information
g4klx committed Aug 17, 2021
1 parent 4ec4b3d commit 200986b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion M17Control.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
#if !defined(VERSION_H)
#define VERSION_H

const char* VERSION = "20210811";
const char* VERSION = "20210817";

#endif

0 comments on commit 200986b

Please sign in to comment.