This commit is contained in:
Simon 2020-12-09 17:20:28 +00:00
parent 39009a37b6
commit 7b4795e560
1 changed files with 1 additions and 1 deletions

View File

@ -1372,7 +1372,7 @@ class routerHBP(HBSYSTEM):
self.STATUS[_slot]['RX_LC'] = LC_OPT + _dst_id + _rf_src
#Create default bridge for unknown TG
if int_id(_dst_id) > 5 and (str(int_id(_dst_id)) not in BRIDGES):
if int_id(_dst_id) >= 5 and (str(int_id(_dst_id)) not in BRIDGES):
logger.info('(%s) Bridge for TG %s does not exist. Creating as User Activated. Timeout %s',self._system, int_id(_dst_id),CONFIG['SYSTEMS'][self._system]['DEFAULT_UA_TIMER'])
make_single_bridge(_dst_id,self._system,_slot,CONFIG['SYSTEMS'][self._system]['DEFAULT_UA_TIMER'])