From 424b228c46f0df4116ba8e656bd3d936d7f33215 Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Sat, 15 Jun 2024 14:25:04 -0400 Subject: [PATCH] fix issue where last ID data wasn't being reset when the VC was done with a call; --- 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 d702cd68..cedd903f 100644 --- a/src/host/p25/Control.cpp +++ b/src/host/p25/Control.cpp @@ -1540,6 +1540,11 @@ void Control::notifyCC_ReleaseGrant(uint32_t dstId) if (ret != network::rest::http::HTTPPayload::StatusType::OK) { ::LogError(LOG_P25, "failed to notify the CC %s:%u of the release of, dstId = %u", m_controlChData.address().c_str(), m_controlChData.port(), dstId); } + + m_rfLastDstId = 0U; + m_rfLastSrcId = 0U; + m_netLastDstId = 0U; + m_netLastSrcId = 0U; } ///