Fixed Bug - See Description

There was missing logic to detect whether or not a target was active.
This could cause one-way transmission and a system only being 1/2
disconnected from a conference bridge.
This commit is contained in:
Cort Buffington 2016-12-21 20:58:18 -06:00
parent 55b5afe41f
commit 69941711c0
1 changed files with 69 additions and 68 deletions

View File

@ -255,6 +255,7 @@ class routerSYSTEM(HBSYSTEM):
for _target in BRIDGES[_bridge]:
if _target['SYSTEM'] != self._system:
if _target['ACTIVE']:
_target_status = systems[_target['SYSTEM']].STATUS
_target_system = self._CONFIG['SYSTEMS'][_target['SYSTEM']]