From c6f994938fb832f4449802de45df0663daed53a3 Mon Sep 17 00:00:00 2001 From: James Smith Date: Wed, 24 Dec 2025 12:42:08 +0000 Subject: [PATCH] Show full aircraft data in status endpoint MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Helps debug what fields are being received from dump1090. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- routes/adsb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/adsb.py b/routes/adsb.py index 8f7220f..89bb078 100644 --- a/routes/adsb.py +++ b/routes/adsb.py @@ -204,7 +204,7 @@ def adsb_status(): 'messages_received': adsb_messages_received, 'last_message_time': adsb_last_message_time, 'aircraft_count': len(app_module.adsb_aircraft), - 'aircraft': list(app_module.adsb_aircraft.keys()), + 'aircraft': dict(app_module.adsb_aircraft), # Full aircraft data 'queue_size': app_module.adsb_queue.qsize(), 'dump1090_path': find_dump1090(), 'port_30003_open': check_dump1090_service() is not None