Fix wrong telemetry key

pull/1023/head
DB8LE 2025-10-15 10:00:33 +02:00
rodzic 7b1bd16c73
commit f261a32cb3
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 21C0FE32D76CCD3C
1 zmienionych plików z 1 dodań i 1 usunięć

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["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():