From a19dc933504f73b091636c691d42f536fe51f017 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Thu, 23 Oct 2025 12:13:25 -0700 Subject: [PATCH] Update locationdata.py --- modules/locationdata.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/locationdata.py b/modules/locationdata.py index 64eaedd..1542213 100644 --- a/modules/locationdata.py +++ b/modules/locationdata.py @@ -1128,11 +1128,11 @@ def mapHandler(userID, deviceID, channel_number, message, snr, rssi, hop): # if there is SNR and RSSI info, append to description if snr is not None and rssi is not None: - description += f" (SNR:{snr}dB RSSI:{rssi}dBm" + description += f" SNR:{snr}dB RSSI:{rssi}dBm" # if there is hop info, append to description if hop is not None: - description += f" Meta:{hop})" + description += f" Meta:{hop}" # location should be a tuple: (lat, lon) if not location or len(location) != 2: