From 6f61276552fed240de9daf6ab7c97e68be116bbf Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Sun, 12 Jan 2025 20:54:59 -0500 Subject: [PATCH] disable source ID check when filtering TDUs; --- src/fne/network/callhandler/TagP25Data.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fne/network/callhandler/TagP25Data.cpp b/src/fne/network/callhandler/TagP25Data.cpp index 754da483..62400993 100644 --- a/src/fne/network/callhandler/TagP25Data.cpp +++ b/src/fne/network/callhandler/TagP25Data.cpp @@ -907,7 +907,7 @@ bool TagP25Data::isPeerPermitted(uint32_t peerId, lc::LC& control, DUID::E duid, if (duid == DUID::TDU) { if (m_network->m_filterTerminators) { - if (control.getSrcId() != 0U && control.getDstId() != 0U) { + if (/*control.getSrcId() != 0U &&*/control.getDstId() != 0U) { // is this a group call? lookups::TalkgroupRuleGroupVoice tg = m_network->m_tidLookup->find(control.getDstId()); if (!tg.isInvalid()) {