From c4af2d79c59641aabcdd0a9edb2cf60cb89a0b22 Mon Sep 17 00:00:00 2001 From: Joseph Henry Date: Thu, 3 Jul 2025 09:44:45 -0700 Subject: [PATCH] Don't count bridges towards multicast limit. Send to all bridges --- node/Multicaster.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/node/Multicaster.cpp b/node/Multicaster.cpp index ccade7083..2438e4f30 100644 --- a/node/Multicaster.cpp +++ b/node/Multicaster.cpp @@ -247,9 +247,6 @@ void Multicaster::send(void* tPtr, int64_t now, const SharedPtr& networ for (unsigned int i = 0; i < activeBridgeCount; ++i) { if ((activeBridges[i] != RR->identity.address()) && (activeBridges[i] != origin)) { out.sendOnly(RR, tPtr, activeBridges[i]); // optimization: don't use dedup log if it's a one-pass send - if (++count >= limit) { - break; - } } }