This commit is contained in:
Cort Buffington 2015-08-12 10:29:25 -05:00
parent 9b077fc2f0
commit 1677247b75
1 changed files with 3 additions and 1 deletions

View File

@ -77,7 +77,9 @@ class playIPSC(IPSC):
return
'''
if (_ts == 0 and _dst_group not in trigger_groups_1) and (_ts == 1 and _dst_group not in trigger_groups_2):
if (_ts == 0 and _dst_group not in trigger_groups_1):
return
if (_ts == 1 and _dst_group not in trigger_groups_2):
return
logger.info('(Event ID: %s) Playback triggered from TS %s, TGID %s', self.event_id, (_ts +1), int_id(_dst_group))