From fac52c4bc50f0bfb20b8703bebb480f2f9354dfd Mon Sep 17 00:00:00 2001 From: Angel Casado Date: Fri, 28 Mar 2025 13:41:27 +0100 Subject: [PATCH] Handle dst_calls 'OGFLR6' and 'OGFLR7' (fixes #123) --- ogn/parser/parse.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ogn/parser/parse.py b/ogn/parser/parse.py index ce33258..c4d6b7e 100644 --- a/ogn/parser/parse.py +++ b/ogn/parser/parse.py @@ -153,6 +153,8 @@ def parse_aprs(message, reference_timestamp=None): dstcall_parser_mapping = {'APRS': OgnParser(), 'OGNFNT': FanetParser(), 'OGFLR': FlarmParser(), + 'OGFLR6': FlarmParser(), + 'OGFLR7': FlarmParser(), 'OGNTRK': TrackerParser(), 'OGNSDR': ReceiverParser(), 'OGCAPT': GenericParser(beacon_type='capturs'),