From bee3ea79f0b6674304166c8b255a372ea3fb69bc Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Thu, 21 Aug 2025 18:47:41 -0400 Subject: [PATCH] Minor thing, unrelated to bug but missing. --- node/Switch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/Switch.cpp b/node/Switch.cpp index 90cd11b3e..b536412fc 100644 --- a/node/Switch.cpp +++ b/node/Switch.cpp @@ -962,7 +962,7 @@ void Switch::doAnythingWaitingForPeer(void* tPtr, const SharedPtr& peer) Mutex::Lock _l(_txQueue_m); for (std::list::iterator txi(_txQueue.begin()); txi != _txQueue.end();) { if (txi->dest == peer->address()) { - if (_trySend(tPtr, txi->packet, txi->encrypt, 0, txi->flowId)) { + if (_trySend(tPtr, txi->packet, txi->encrypt, txi->nwid, txi->flowId)) { _txQueue.erase(txi++); } else {