Fix IMS100

This commit is contained in:
Michaela Wheeler 2021-09-21 14:05:13 +10:00
parent 0ced09dff0
commit a0b1292d4d

View File

@ -201,7 +201,7 @@ def telemetry_filter(telemetry):
# Check Meisei sonde callsigns for validity.
# meisei_ims returns a callsign of IMS100-xxxxxx until it receives the serial number, so we filter based on the x's being present or not.
if "MEISEI" in telemetry["type"]:
if "IMS100" in telemetry["type"] or "RS11G" in telemetry["type"]:
meisei_callsign_valid = "x" not in _serial
else:
meisei_callsign_valid = False