From 050d5e3a5cbf4be5733c69ed31236f86eb9abe6a Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Thu, 28 Sep 2023 14:02:41 -0400 Subject: [PATCH] fix issue with internal net TG hang not appropriately holding a TG; --- src/p25/packet/Voice.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/p25/packet/Voice.cpp b/src/p25/packet/Voice.cpp index 58c1280e..a4b6d0a1 100644 --- a/src/p25/packet/Voice.cpp +++ b/src/p25/packet/Voice.cpp @@ -1430,6 +1430,11 @@ void Voice::writeNet_LDU1() } } } + else { + if (m_p25->m_netTGHang.isRunning()) { + m_p25->m_netTGHang.start(); + } + } uint32_t netId = control.getNetId(); uint32_t sysId = control.getSysId();