From 5904d471b7837771d327473587f098cc10324ba4 Mon Sep 17 00:00:00 2001 From: Simon Date: Sat, 29 May 2021 19:00:54 +0100 Subject: [PATCH] Experimental passing of data sent as a group call --- bridge_master.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bridge_master.py b/bridge_master.py index 9e74053..81c98f9 100755 --- a/bridge_master.py +++ b/bridge_master.py @@ -1321,7 +1321,7 @@ class routerOBP(OPENBRIDGE): dmrpkt = _data[20:53] _bits = _data[15] - if _call_type == 'group': + if _call_type == 'group' or call_type == 'vcsbk': # Is this a new call stream? if (_stream_id not in self.STATUS): @@ -1831,7 +1831,7 @@ class routerHBP(HBSYSTEM): #Handle group calls - if _call_type == 'group': + if _call_type == 'group' or call_type == 'vcsbk': # Is this a new call stream? if (_stream_id != self.STATUS[_slot]['RX_STREAM_ID']):