From 1b13f872db9b8d19bd5f8b8e124346416fbfd3d9 Mon Sep 17 00:00:00 2001 From: Jonathan Bennett Date: Sun, 4 Jan 2026 14:24:51 -0600 Subject: [PATCH] Don't double-process rebroadcast messages --- src/modules/Native/StoreForwardPlusPlus.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/modules/Native/StoreForwardPlusPlus.cpp b/src/modules/Native/StoreForwardPlusPlus.cpp index 043a3fbb1..38466208b 100644 --- a/src/modules/Native/StoreForwardPlusPlus.cpp +++ b/src/modules/Native/StoreForwardPlusPlus.cpp @@ -1368,7 +1368,8 @@ void StoreForwardPlusPlusModule::rebroadcastLinkObject(link_object &lo) p->encrypted.size = lo.encrypted_len; memcpy(p->encrypted.bytes, lo.encrypted_bytes, lo.encrypted_len); p->transport_mechanism = meshtastic_MeshPacket_TransportMechanism_TRANSPORT_LORA; // only a tiny white lie - service->sendToMesh(p, RX_SRC_RADIO, true); // Send to mesh, cc to phone + // Send to mesh, but don't cc the phone, to avoid a double message. + service->sendToMesh(p, RX_SRC_RADIO, false); } bool StoreForwardPlusPlusModule::checkCommitHash(StoreForwardPlusPlusModule::link_object &lo, uint8_t *commit_hash_bytes,