From 8e4716f2418ff448e957389865e388afdcbdefc6 Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Fri, 5 Feb 2021 01:07:09 +0100 Subject: [PATCH] drop empty Q65 decodes --- owrx/wsjt.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/owrx/wsjt.py b/owrx/wsjt.py index 7903b72..60a5dc1 100644 --- a/owrx/wsjt.py +++ b/owrx/wsjt.py @@ -197,6 +197,9 @@ class WsjtParser(Parser): else: decoder = Jt9Decoder(profile, messageParser) out = decoder.parse(msg, freq) + if isinstance(profile, Q65Profile) and not out["msg"]: + # all efforts in vain, it's just a potential signal indicator + return out["mode"] = mode out["interval"] = profile.getInterval()