From 9449de77d4b58e32f575c2a7110c165ff5bf491a Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Sat, 13 Jun 2026 11:20:28 -0400 Subject: [PATCH] more hardening, when a net talkgroup hand releases if the state is non idle reset the state; --- src/host/p25/Control.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/host/p25/Control.cpp b/src/host/p25/Control.cpp index 26f0bf06..012f3f49 100644 --- a/src/host/p25/Control.cpp +++ b/src/host/p25/Control.cpp @@ -1010,6 +1010,11 @@ void Control::clock() } } + if (m_netState != RS_NET_IDLE) { + m_voice->resetNet(); + m_netState = RS_NET_IDLE; + } + m_netLastDstId = 0U; m_netLastSrcId = 0U; }