From 985145064d4c89a0358218d7c7bbf96108b82cec Mon Sep 17 00:00:00 2001 From: Simon Date: Sat, 20 Nov 2021 17:15:48 +0000 Subject: [PATCH] Remove global allow for Private Call 900999 900999 should be configured on each server individually to allow D-APRS --- bridge_master.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bridge_master.py b/bridge_master.py index 175b935..77ed3ca 100644 --- a/bridge_master.py +++ b/bridge_master.py @@ -1522,7 +1522,7 @@ class routerOBP(OPENBRIDGE): if system == self._system: continue #We only want to send data calls to individual IDs via OpenBridge - if CONFIG['SYSTEMS'][system]['MODE'] == 'OPENBRIDGE' and (_int_dst_id >= 1000000 or _int_dst_id == 900999): + if CONFIG['SYSTEMS'][system]['MODE'] == 'OPENBRIDGE' and (_int_dst_id >= 1000000): self.sendDataToOBP(system,_data,dmrpkt,pkt_time,_stream_id,_dst_id,_peer_id,_rf_src,_bits,_slot) #If destination ID is in the Subscriber Map @@ -2054,7 +2054,7 @@ class routerHBP(HBSYSTEM): if system == self._system: continue #We only want to send data calls to individual IDs via OpenBridge - if CONFIG['SYSTEMS'][system]['MODE'] == 'OPENBRIDGE' and (_int_dst_id >= 1000000 or _int_dst_id == 900999): + if CONFIG['SYSTEMS'][system]['MODE'] == 'OPENBRIDGE' and (_int_dst_id >= 1000000): self.sendDataToOBP(system,_data,dmrpkt,pkt_time,_stream_id,_dst_id,_peer_id,_rf_src,_bits,_slot)