Skip to content

Commit

Permalink
Fix missing separator for client list in mediastream.
Browse files Browse the repository at this point in the history
  • Loading branch information
gareth-palmer committed Sep 10, 2021
1 parent eed345f commit d681828
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mediastream
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def stream_media(target_hostnames, multicast_address, port, codec, wav_file):
if multicast_address is not None:
udp_sink.set_property('clients', f'{multicast_address}:{port}')
else:
udp_sink.set_property('clients', ''.join([f'{target_hostname}:{port}' for target_hostname in target_hostnames]))
udp_sink.set_property('clients', ','.join([f'{target_hostname}:{port}' for target_hostname in target_hostnames]))

udp_sink.set_property('sync', True)

Expand Down

0 comments on commit d681828

Please sign in to comment.