From f261a32cb36fccb069a9da97e4c52238c91987ca Mon Sep 17 00:00:00 2001 From: DB8LE Date: Wed, 15 Oct 2025 10:00:33 +0200 Subject: [PATCH] Fix wrong telemetry key --- auto_rx/autorx/decode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auto_rx/autorx/decode.py b/auto_rx/autorx/decode.py index 4f45236..6997e4e 100644 --- a/auto_rx/autorx/decode.py +++ b/auto_rx/autorx/decode.py @@ -1937,7 +1937,7 @@ class SondeDecoder(object): return False # Run telemetry from DFM sondes through real-time filter - if self.enable_realtime_filter and (_telemetry["type"].startswith("DFM")): + if self.enable_realtime_filter and (_telemetry["model"].startswith("DFM")): # If sonde has already been received, calculate velocity velocity = 0 if _telemetry["callsign"] in self.last_positions.keys():