From 2ce31622be396cf8aa537a3ae006eaf7bf69e510 Mon Sep 17 00:00:00 2001 From: Simon Date: Sun, 10 Jan 2021 20:12:35 +0000 Subject: [PATCH] Revert "Try another method to match all for dial bridges" This reverts commit 7272289a230d40a186a107473b7b83566fd19143. --- bridge_master.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bridge_master.py b/bridge_master.py index 9899e03..d8a1ca0 100755 --- a/bridge_master.py +++ b/bridge_master.py @@ -1167,8 +1167,7 @@ class routerOBP(OPENBRIDGE): #if _bridge[0:1] != '#': #if True: for _system in BRIDGES[_bridge]: - if (_system['SYSTEM'] == self._system and _system['TGID'] == _dst_id and _system['TS'] == _slot and _system['ACTIVE'] == True) \ - or (_system['SYSTEM'] == self._system and int_id(_system['TGID']) == int(_bridge) and _system['TS'] == _slot and _system['ACTIVE'] == True): + if _system['SYSTEM'] == self._system and _system['TGID'] == _dst_id and _system['TS'] == _slot and _system['ACTIVE'] == True: _sysIgnore = self.to_target(_peer_id, _rf_src, _dst_id, _seq, _slot, _call_type, _frame_type, _dtype_vseq, _stream_id, _data, pkt_time, dmrpkt, _bits,_bridge,_system,False,_sysIgnore)