From 7ab44438810809fcde31b99f78080506cf01edc1 Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Mon, 2 Feb 2026 17:41:32 -0500 Subject: [PATCH] reset active call count on a maintainence loop; --- src/fne/network/FNENetwork.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/fne/network/FNENetwork.cpp b/src/fne/network/FNENetwork.cpp index 814571e2..08204a75 100644 --- a/src/fne/network/FNENetwork.cpp +++ b/src/fne/network/FNENetwork.cpp @@ -631,6 +631,9 @@ void FNENetwork::clock(uint32_t ms) m_tagDMR->packetData()->cleanupStale(); m_tagP25->packetData()->cleanupStale(); + m_totalActiveCalls = 0U; // bryanb: this is techincally incorrect and should be better implemented + // but for now it will suffice to reset the active call count on maintainence cycle + m_maintainenceTimer.start(); }