Add a crew monitoring server (#7542)

This commit is contained in:
Julian Giebel
2023-01-23 02:07:57 +01:00
committed by GitHub
parent ad9c5ae5e9
commit c2b87dfeda
20 changed files with 518 additions and 58 deletions

View File

@@ -82,7 +82,7 @@ public sealed class DeviceNet
/// </summary>
public bool Remove(DeviceNetworkComponent device)
{
if (device.Address == null || Devices.Remove(device.Address))
if (device.Address == null || !Devices.Remove(device.Address))
return false;
if (device.ReceiveFrequency is not uint freq)