From 1c90e3403dd1e4465833843443a1d81c90b15a4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Ra=C3=9Fmann?= Date: Wed, 26 Jul 2023 10:15:02 +0200 Subject: [PATCH] bugfixing --- owrx/js8.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/owrx/js8.py b/owrx/js8.py index f05204db..167b3f17 100644 --- a/owrx/js8.py +++ b/owrx/js8.py @@ -99,11 +99,10 @@ class Js8Parser(AudioChopperParser): frame = Js8().parse_message(msg) - callsign = frame.source["callsign"] - self.pushDecode(band) if (isinstance(frame, Js8FrameHeartbeat) or isinstance(frame, Js8FrameCompound)) and frame.grid: + callsign = frame.source["callsign"] Map.getSharedInstance().updateLocation( callsign, LocatorLocation(frame.grid), "JS8", band )