From baf66487deafcd54246e28fb68a4afdac9dbd09a Mon Sep 17 00:00:00 2001 From: Pablo Revilla Date: Thu, 26 Jun 2025 18:45:30 -0700 Subject: [PATCH] update version --- meshview/mqtt_store.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/meshview/mqtt_store.py b/meshview/mqtt_store.py index 1def8e9..68833e7 100644 --- a/meshview/mqtt_store.py +++ b/meshview/mqtt_store.py @@ -15,8 +15,7 @@ async def process_envelope(topic, env): # Checking if the received packet is a MAP_REPORT # Update the node table with the firmware version - #if env.packet.decoded.portnum == PortNum.MAP_REPORT_APP: - if env.packet.decoded.portnum == 0: + if env.packet.decoded.portnum == PortNum.MAP_REPORT_APP: # Extract the node ID from the packet and format the user ID node_id = getattr(env.packet, "from") user_id = f"!{node_id:0{8}x}"