From d589d3e155dd54648e8563643b2014fe2b2fee70 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Thu, 11 Sep 2025 18:00:42 -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 ffa46cc..a982c45 100644 --- a/modules/system.py +++ b/modules/system.py @@ -1015,7 +1015,7 @@ def consumeMetadata(packet, rxNode=0): if 'latitude' in position_data and 'longitude' in position_data: flight_info = get_openskynetwork(position_data.get('latitude', 0), position_data.get('longitude', 0)) if flight_info and NO_ALERTS not in flight_info and ERROR_FETCHING_DATA not in flight_info: - msg += f"\n✈️Detected near: {flight_info}" + msg += f"\n✈️Detected near:\n{flight_info}" send_message(msg, highfly_channel, 0, highfly_interface) time.sleep(responseDelay)