1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-12 17:48:31 +00:00

DMX - Fix default random CID creation

This commit is contained in:
Robert 2021-04-16 17:41:28 +02:00
parent 07a4b0081f
commit 0ac1858627

View File

@ -67,12 +67,12 @@ namespace RGB.NET.Devices.DMX.E131
this.Hostname = deviceDefinition.Hostname;
this.Port = deviceDefinition.Port;
this.Universe = deviceDefinition.Universe;
byte[]? cid = deviceDefinition.CID;
if ((CID == null) || (CID.Length != CID_LENGTH))
if ((cid == null) || (cid.Length != CID_LENGTH))
{
CID = new byte[CID_LENGTH];
new Random().NextBytes(CID);
cid = new byte[CID_LENGTH];
new Random().NextBytes(cid);
}
CID = cid!;