From 83cb446835573b3d6e7875dbebf74dd062b5801e Mon Sep 17 00:00:00 2001 From: Simon Date: Wed, 9 Dec 2020 16:30:20 +0000 Subject: [PATCH] Create bridges for TGs 5 and over --- bridge_master.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bridge_master.py b/bridge_master.py index 9a4ff0f..6ae73c8 100755 --- a/bridge_master.py +++ b/bridge_master.py @@ -1213,7 +1213,7 @@ class routerHBP(HBSYSTEM): if (_stream_id != self.STATUS[_slot]['RX_STREAM_ID']): logger.warning('(%s) Reflector: Private call from %s to %s',self._system, int_id(_rf_src), _int_dst_id) #if _int_dst_id >= 4000 and _int_dst_id <= 5000: - if _int_dst_id >= 90 and _int_dst_id <= 999999: + if _int_dst_id >= 5 and _int_dst_id <= 999999: _bridgename = '#'+ str(_int_dst_id) if _bridgename not in BRIDGES and not (_int_dst_id >= 4000 and _int_dst_id <= 5000): logger.info('(%s) [A] Reflector for TG %s does not exist. Creating as User Activated. Timeout: %s',self._system, _int_dst_id,CONFIG['SYSTEMS'][self._system]['DEFAULT_UA_TIMER'])