From 9c74130db5f08b9cb01b7c064c9715239e7492c9 Mon Sep 17 00:00:00 2001 From: Tom Fifield Date: Mon, 20 May 2024 11:17:21 +0800 Subject: [PATCH] Add 257 ATAK_FORWARDER to ignored packet types 72 ATAK_PLUGIN was already ignored by Meshtastic Map. This patch adds 257 ATAK_FORWARDER to the list of ignored packets. --- src/mqtt.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mqtt.js b/src/mqtt.js index 4c3262e..683cfaf 100644 --- a/src/mqtt.js +++ b/src/mqtt.js @@ -720,6 +720,7 @@ client.on("message", async (topic, message) => { || portnum === 65 // ignore STORE_FORWARD_APP || portnum === 66 // ignore RANGE_TEST_APP || portnum === 72 // ignore ATAK_PLUGIN + || portnum === 257 // ignore ATAK_FORWARDER ){ return; }