From b3b45a4335fae97b94a1150e4a33724a66690ad2 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Thu, 9 Oct 2025 19:10:58 -0700 Subject: [PATCH] Update system.py --- modules/system.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/system.py b/modules/system.py index 02bffcd..1d5dfdd 100644 --- a/modules/system.py +++ b/modules/system.py @@ -1105,7 +1105,7 @@ def consumeMetadata(packet, rxNode=0, channel=-1): meshLeaderboard['mostMessages']['timestamp'] = time.time() # consider Meta for highest and weakest DBm - if packet.get('rxSnr') is not None: + if packet.get('rxSnr') is not None and nodeID != 0: dbm = packet['rxSnr'] if dbm > meshLeaderboard['highestDBm']['value']: meshLeaderboard['highestDBm'] = {'nodeID': nodeID, 'value': dbm, 'timestamp': time.time()}