Fixing the WRONG commit.

This commit is contained in:
Cort Buffington 2018-03-08 11:53:53 -06:00
parent ef0778f16e
commit 76daa63bd0

View File

@ -236,7 +236,8 @@ class HBSYSTEM(DatagramProtocol):
if self._config['REPEAT'] == True:
for _client in self._clients:
if _client != _radio_id:
self.send_client(_client, _data)
#self.send_client(_client, _data)
self.send_client(_client, _data[:11] + _client + _data[15:])
#self.send_client(_client, _data[:11] + self._config['RADIO_ID'] + _data[15:])
#self._logger.debug('(%s) Packet on TS%s from %s (%s) for destination ID %s repeated to client: %s (%s) [Stream ID: %s]', self._system, _slot, self._clients[_radio_id]['CALLSIGN'], int_id(_radio_id), int_id(_dst_id), self._clients[_client]['CALLSIGN'], int_id(_client), int_id(_stream_id))