Rolling back WSJT reporting change, since PSKReport/WSPRnet need locator.

This commit is contained in:
Marat Fayzullin 2024-04-27 00:03:24 -04:00
parent 4675580201
commit e8d4e4c9ea
1 changed files with 1 additions and 1 deletions

View File

@ -287,11 +287,11 @@ class WsjtParser(AudioChopperParser):
out["interval"] = profile.getInterval()
self.pushDecode(mode, band)
ReportingEngine.getSharedInstance().spot(out)
if "callsign" in out and "locator" in out:
Map.getSharedInstance().updateLocation(
out["callsign"], LocatorLocation(out["locator"]), mode, band
)
ReportingEngine.getSharedInstance().spot(out)
return out
except Exception: