Fix incorect field

testing
Mark Jessop 2025-10-20 06:58:49 +10:30
rodzic 76ce16d423
commit 875eb8b955
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -12,7 +12,7 @@ from queue import Queue
# MINOR - New sonde type support, other fairly big changes that may result in telemetry or config file incompatability issus.
# PATCH - Small changes, or minor feature additions.
__version__ = "1.8.2-beta7"
__version__ = "1.8.2-beta8"
# Global Variables

Wyświetl plik

@ -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["model"].startswith("DFM")):
if self.enable_realtime_filter and (_telemetry["type"].startswith("DFM")):
# If sonde has already been received, calculate velocity
velocity = 0
if _telemetry["callsign"] in self.last_positions.keys():