From b41cb5d133cf52639c31aa8f40216effdaf8336f Mon Sep 17 00:00:00 2001 From: Simon Date: Thu, 21 Apr 2022 01:16:40 +0100 Subject: [PATCH] Add 92-199 to the global low-level TG filter --- hblink.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hblink.py b/hblink.py index b650976..0a6c44f 100755 --- a/hblink.py +++ b/hblink.py @@ -322,7 +322,7 @@ class OPENBRIDGE(DatagramProtocol): #Low-level TG filtering if _call_type != 'unit': _int_dst_id = int_id(_dst_id) - if _int_dst_id <= 79 or (_int_dst_id >= 9990 and _int_dst_id <= 9999) or _int_dst_id == 900999: + if _int_dst_id <= 79 or (_int_dst_id >= 9990 and _int_dst_id <= 9999) or (_int_dst_id >= 92 and _int_dst_id <= 199) or _int_dst_id == 900999: if _stream_id not in self._laststrid: logger.info('(%s) CALL DROPPED WITH STREAM ID %s FROM SUBSCRIBER %s BY GLOBAL TG FILTER', self._system, int_id(_stream_id), _int_dst_id) self.send_bcsq(_dst_id,_stream_id)