Now reporting all FT8/etc messages via MQTT, even if no locator.
This commit is contained in:
parent
aaa7e6026b
commit
02a6ad0530
|
|
@ -287,11 +287,11 @@ class WsjtParser(AudioChopperParser):
|
||||||
out["interval"] = profile.getInterval()
|
out["interval"] = profile.getInterval()
|
||||||
|
|
||||||
self.pushDecode(mode, band)
|
self.pushDecode(mode, band)
|
||||||
|
ReportingEngine.getSharedInstance().spot(out)
|
||||||
if "callsign" in out and "locator" in out:
|
if "callsign" in out and "locator" in out:
|
||||||
Map.getSharedInstance().updateLocation(
|
Map.getSharedInstance().updateLocation(
|
||||||
out["callsign"], LocatorLocation(out["locator"]), mode, band
|
out["callsign"], LocatorLocation(out["locator"]), mode, band
|
||||||
)
|
)
|
||||||
ReportingEngine.getSharedInstance().spot(out)
|
|
||||||
|
|
||||||
return out
|
return out
|
||||||
except Exception:
|
except Exception:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue